From: Guido Kanschat Date: Wed, 6 Feb 2008 16:51:16 +0000 (+0000) Subject: accomodate for new LogStream X-Git-Tag: v8.0.0~9436 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e1764f6e4559bc42fb9e7ec7512fe2098cb4473;p=dealii.git accomodate for new LogStream git-svn-id: https://svn.dealii.org/trunk@15717 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/hp/crash_17.cc b/tests/hp/crash_17.cc index eadc242b4c..3995f353a9 100644 --- a/tests/hp/crash_17.cc +++ b/tests/hp/crash_17.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2006, 2007 by the deal.II authors +// Copyright (C) 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -691,7 +691,8 @@ void LaplaceProblem::run () int main () { std::ofstream logfile(logname); - logfile.precision (3); + logfile << std::setprecision(3); + deallog << std::setprecision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/crash_17_compressed_set_sparsity.cc b/tests/hp/crash_17_compressed_set_sparsity.cc index df0c6212e0..aab32fcdc5 100644 --- a/tests/hp/crash_17_compressed_set_sparsity.cc +++ b/tests/hp/crash_17_compressed_set_sparsity.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2006, 2007 by the deal.II authors +// Copyright (C) 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -694,6 +694,7 @@ int main () { std::ofstream logfile(logname); logfile.precision (3); + deallog << std::setprecision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/crash_18.cc b/tests/hp/crash_18.cc index ae96488105..4036eb79f0 100644 --- a/tests/hp/crash_18.cc +++ b/tests/hp/crash_18.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2006, 2007 by the deal.II authors +// Copyright (C) 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -697,6 +697,7 @@ int main () { std::ofstream logfile(logname); logfile.precision (3); + deallog << std::setprecision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/crash_18_compressed_set_sparsity.cc b/tests/hp/crash_18_compressed_set_sparsity.cc index 7a98acf418..22452f4836 100644 --- a/tests/hp/crash_18_compressed_set_sparsity.cc +++ b/tests/hp/crash_18_compressed_set_sparsity.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2006, 2007 by the deal.II authors +// Copyright (C) 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -700,6 +700,7 @@ int main () { std::ofstream logfile(logname); logfile.precision (3); + deallog << std::setprecision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/integrate_difference.cc b/tests/hp/integrate_difference.cc index 6af021d86b..619e7ea90e 100644 --- a/tests/hp/integrate_difference.cc +++ b/tests/hp/integrate_difference.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2005, 2006 by the deal.II authors +// Copyright (C) 2005, 2006, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -99,6 +99,7 @@ int main () { std::ofstream logfile("integrate_difference/output"); logfile.precision(2); + deallog << std::setprecision(2); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/interpolate_dgq_01.cc b/tests/hp/interpolate_dgq_01.cc index 4078664084..3e6b81f19d 100644 --- a/tests/hp/interpolate_dgq_01.cc +++ b/tests/hp/interpolate_dgq_01.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2006 by the deal.II authors +// Copyright (C) 2006, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -107,6 +107,7 @@ int main () { std::ofstream logfile("interpolate_dgq_01/output"); logfile.precision (3); + deallog << std::setprecision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/interpolate_dgq_02.cc b/tests/hp/interpolate_dgq_02.cc index ed006ef3e7..0b856ad7e7 100644 --- a/tests/hp/interpolate_dgq_02.cc +++ b/tests/hp/interpolate_dgq_02.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2006 by the deal.II authors +// Copyright (C) 2006, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -117,6 +117,7 @@ int main () { std::ofstream logfile("interpolate_dgq_02/output"); logfile.precision (3); + deallog << std::setprecision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/interpolate_q_01.cc b/tests/hp/interpolate_q_01.cc index 089eca58a8..561d4f3514 100644 --- a/tests/hp/interpolate_q_01.cc +++ b/tests/hp/interpolate_q_01.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2006 by the deal.II authors +// Copyright (C) 2006, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -108,6 +108,7 @@ int main () { std::ofstream logfile("interpolate_q_01/output"); logfile.precision (3); + deallog << std::setprecision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/interpolate_q_02.cc b/tests/hp/interpolate_q_02.cc index 890edd7604..01c99574b7 100644 --- a/tests/hp/interpolate_q_02.cc +++ b/tests/hp/interpolate_q_02.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2006 by the deal.II authors +// Copyright (C) 2006, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -117,6 +117,7 @@ int main () { std::ofstream logfile("interpolate_q_02/output"); logfile.precision (3); + deallog << std::setprecision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/interpolate_q_system_01.cc b/tests/hp/interpolate_q_system_01.cc index 196cad7f1a..7e4f7d6d08 100644 --- a/tests/hp/interpolate_q_system_01.cc +++ b/tests/hp/interpolate_q_system_01.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2006 by the deal.II authors +// Copyright (C) 2006, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -113,6 +113,7 @@ int main () { std::ofstream logfile("interpolate_q_system_01/output"); logfile.precision (3); + deallog << std::setprecision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/interpolate_q_system_02.cc b/tests/hp/interpolate_q_system_02.cc index cb2a54d9c8..736eb228a1 100644 --- a/tests/hp/interpolate_q_system_02.cc +++ b/tests/hp/interpolate_q_system_02.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2006 by the deal.II authors +// Copyright (C) 2006, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -124,6 +124,7 @@ int main () { std::ofstream logfile("interpolate_q_system_02/output"); logfile.precision (3); + deallog << std::setprecision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/step-11.cc b/tests/hp/step-11.cc index bec4a2ec49..bd9bbc6263 100644 --- a/tests/hp/step-11.cc +++ b/tests/hp/step-11.cc @@ -215,7 +215,8 @@ int main () try { logfile.precision(2); - + deallog << std::setprecision(2); + deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/hp/step-11/cmp/generic b/tests/hp/step-11/cmp/generic index 6ec235b60e..645e373e0f 100644 --- a/tests/hp/step-11/cmp/generic +++ b/tests/hp/step-11/cmp/generic @@ -23,17 +23,17 @@ cells |u|_1 error DEAL:: DEAL::Using mapping with degree 2: DEAL::============================ -DEAL:cg::Starting value 1.338917 +DEAL:cg::Starting value 1.3 DEAL:cg::Convergence step 7 value 0 -DEAL:cg::Starting value 1.028493 +DEAL:cg::Starting value 1.0 DEAL:cg::Convergence step 17 value 0 -DEAL:cg::Starting value 0.654097 +DEAL:cg::Starting value 0.65 DEAL:cg::Convergence step 29 value 0 -DEAL:cg::Starting value 0.368099 +DEAL:cg::Starting value 0.37 DEAL:cg::Convergence step 53 value 0 -DEAL:cg::Starting value 0.194917 +DEAL:cg::Starting value 0.19 DEAL:cg::Convergence step 108 value 0 -DEAL:cg::Starting value 0.100213 +DEAL:cg::Starting value 0.10 DEAL:cg::Convergence step 238 value 0 cells |u|_1 error 5 1.050963 0.202351 @@ -45,17 +45,17 @@ cells |u|_1 error DEAL:: DEAL::Using mapping with degree 3: DEAL::============================ -DEAL:cg::Starting value 1.358459 +DEAL:cg::Starting value 1.4 DEAL:cg::Convergence step 7 value 0 -DEAL:cg::Starting value 1.030204 +DEAL:cg::Starting value 1.0 DEAL:cg::Convergence step 17 value 0 -DEAL:cg::Starting value 0.654234 +DEAL:cg::Starting value 0.65 DEAL:cg::Convergence step 29 value 0 -DEAL:cg::Starting value 0.368109 +DEAL:cg::Starting value 0.37 DEAL:cg::Convergence step 53 value 0 -DEAL:cg::Starting value 0.194918 +DEAL:cg::Starting value 0.19 DEAL:cg::Convergence step 108 value 0 -DEAL:cg::Starting value 0.100213 +DEAL:cg::Starting value 0.10 DEAL:cg::Convergence step 238 value 0 cells |u|_1 error 5 1.086161 0.167153 diff --git a/tests/hp/step-11_compressed_set_sparsity.cc b/tests/hp/step-11_compressed_set_sparsity.cc index 6b831bbb1c..d39935a5d1 100644 --- a/tests/hp/step-11_compressed_set_sparsity.cc +++ b/tests/hp/step-11_compressed_set_sparsity.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2005, 2006, 2007 by the deal.II authors +// Copyright (C) 2005, 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -218,7 +218,8 @@ int main () try { logfile.precision(2); - + deallog << std::setprecision(2); + deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/hp/step-11_compressed_set_sparsity/cmp/generic b/tests/hp/step-11_compressed_set_sparsity/cmp/generic index 6ec235b60e..645e373e0f 100644 --- a/tests/hp/step-11_compressed_set_sparsity/cmp/generic +++ b/tests/hp/step-11_compressed_set_sparsity/cmp/generic @@ -23,17 +23,17 @@ cells |u|_1 error DEAL:: DEAL::Using mapping with degree 2: DEAL::============================ -DEAL:cg::Starting value 1.338917 +DEAL:cg::Starting value 1.3 DEAL:cg::Convergence step 7 value 0 -DEAL:cg::Starting value 1.028493 +DEAL:cg::Starting value 1.0 DEAL:cg::Convergence step 17 value 0 -DEAL:cg::Starting value 0.654097 +DEAL:cg::Starting value 0.65 DEAL:cg::Convergence step 29 value 0 -DEAL:cg::Starting value 0.368099 +DEAL:cg::Starting value 0.37 DEAL:cg::Convergence step 53 value 0 -DEAL:cg::Starting value 0.194917 +DEAL:cg::Starting value 0.19 DEAL:cg::Convergence step 108 value 0 -DEAL:cg::Starting value 0.100213 +DEAL:cg::Starting value 0.10 DEAL:cg::Convergence step 238 value 0 cells |u|_1 error 5 1.050963 0.202351 @@ -45,17 +45,17 @@ cells |u|_1 error DEAL:: DEAL::Using mapping with degree 3: DEAL::============================ -DEAL:cg::Starting value 1.358459 +DEAL:cg::Starting value 1.4 DEAL:cg::Convergence step 7 value 0 -DEAL:cg::Starting value 1.030204 +DEAL:cg::Starting value 1.0 DEAL:cg::Convergence step 17 value 0 -DEAL:cg::Starting value 0.654234 +DEAL:cg::Starting value 0.65 DEAL:cg::Convergence step 29 value 0 -DEAL:cg::Starting value 0.368109 +DEAL:cg::Starting value 0.37 DEAL:cg::Convergence step 53 value 0 -DEAL:cg::Starting value 0.194918 +DEAL:cg::Starting value 0.19 DEAL:cg::Convergence step 108 value 0 -DEAL:cg::Starting value 0.100213 +DEAL:cg::Starting value 0.10 DEAL:cg::Convergence step 238 value 0 cells |u|_1 error 5 1.086161 0.167153 diff --git a/tests/hp/step-13.cc b/tests/hp/step-13.cc index 952dea5b56..9e49408fb3 100644 --- a/tests/hp/step-13.cc +++ b/tests/hp/step-13.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2005, 2006, 2007 by the deal.II authors +// Copyright (C) 2005, 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -732,7 +732,7 @@ run_simulation (LaplaceSolver::Base &solver, }; - if (solver.n_dofs() < 20000) + if (solver.n_dofs() < 2000) solver.refine_grid (); else break; @@ -800,6 +800,7 @@ int main () try { logfile.precision(2); + deallog << std::setprecision(2); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/step-3.cc b/tests/hp/step-3.cc index 41ee12ae86..b254ac30b7 100644 --- a/tests/hp/step-3.cc +++ b/tests/hp/step-3.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2005, 2006 by the deal.II authors +// Copyright (C) 2005, 2006, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -214,6 +214,7 @@ void LaplaceProblem::run () int main () { logfile.precision(2); + deallog << std::setprecision(2); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/step-4.cc b/tests/hp/step-4.cc index 1f1a31fa82..e29d71d427 100644 --- a/tests/hp/step-4.cc +++ b/tests/hp/step-4.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2005, 2006, 2007 by the deal.II authors +// Copyright (C) 2005, 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -281,6 +281,7 @@ void LaplaceProblem::run () int main () { logfile.precision(2); + deallog << std::setprecision(2); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/step-5.cc b/tests/hp/step-5.cc index 226d222ce5..9046856fbb 100644 --- a/tests/hp/step-5.cc +++ b/tests/hp/step-5.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2005, 2006, 2007 by the deal.II authors +// Copyright (C) 2005, 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -323,6 +323,7 @@ void LaplaceProblem::run () int main () { logfile.precision(2); + deallog << std::setprecision(2); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/step-6.cc b/tests/hp/step-6.cc index 25428ffa4b..1e0fb3c6fd 100644 --- a/tests/hp/step-6.cc +++ b/tests/hp/step-6.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2005, 2006, 2007 by the deal.II authors +// Copyright (C) 2005, 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -375,6 +375,7 @@ void LaplaceProblem::run () int main () { logfile.precision(2); + deallog << std::setprecision(2); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/step-7.cc b/tests/hp/step-7.cc index 2f7fa836a8..1f81597a63 100644 --- a/tests/hp/step-7.cc +++ b/tests/hp/step-7.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2005, 2006, 2007 by the deal.II authors +// Copyright (C) 2005, 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -547,7 +547,7 @@ void HelmholtzProblem::run () data_out.add_data_vector (solution, "solution"); data_out.build_patches ((*fe)[0].degree); - data_out.write_gmv (deallog.get_file_stream()); +// data_out.write_gmv (deallog.get_file_stream()); } @@ -657,6 +657,7 @@ void HelmholtzProblem::run () int main () { logfile.precision(2); + deallog << std::setprecision(2); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/step-7/cmp/generic b/tests/hp/step-7/cmp/generic index a5959285a5..5cf8bec6c5 100644 --- a/tests/hp/step-7/cmp/generic +++ b/tests/hp/step-7/cmp/generic @@ -37,951 +37,6 @@ DEAL:cg::Convergence step 36 value 0 DEAL::Cycle 6: DEAL:: Number of active cells: 466 DEAL:: Number of degrees of freedom: 543 -gmvinput ascii - -nodes 1864 -0.50 1.0 0.50 1.0 -1.0 -0.75 -1.0 -0.75 0.75 1.0 0.75 1.0 0.75 1.0 0.75 1.0 -1.0 -0.75 -1.0 -0.75 -0.25 0.0 -0.25 0.0 0.0 0.25 0.0 0.25 0.25 0.50 0.25 0.50 0.75 1.0 0.75 1.0 0.50 0.75 0.50 0.75 0.75 1.0 0.75 1.0 0.25 0.50 0.25 0.50 0.0 0.25 0.0 0.25 0.25 0.50 0.25 0.50 -0.25 -0.12 -0.25 -0.12 -0.38 -0.25 -0.38 -0.25 0.12 0.25 0.12 0.25 0.12 0.25 0.12 0.25 -0.75 -0.62 -0.75 -0.62 -0.38 -0.25 -0.38 -0.25 -0.25 -0.12 -0.25 -0.12 -0.75 -0.62 -0.75 -0.62 0.62 0.75 0.62 0.75 -0.38 -0.25 -0.38 -0.25 -0.25 -0.12 -0.25 -0.12 -0.12 0.0 -0.12 0.0 -0.25 -0.12 -0.25 -0.12 -0.12 0.0 -0.12 0.0 0.25 0.38 0.25 0.38 0.38 0.50 0.38 0.50 0.25 0.38 0.25 0.38 0.0 0.12 0.0 0.12 0.12 0.25 0.12 0.25 0.0 0.12 0.0 0.12 0.12 0.25 0.12 0.25 0.25 0.38 0.25 0.38 0.25 0.38 0.25 0.38 -1.0 -0.88 -1.0 -0.88 -0.88 -0.75 -0.88 -0.75 -1.0 -0.88 -1.0 -0.88 -0.25 -0.12 -0.25 -0.12 -0.12 0.0 -0.12 0.0 -0.25 -0.12 -0.25 -0.12 -0.12 0.0 -0.12 0.0 -0.25 -0.12 -0.25 -0.12 -0.12 0.0 -0.12 0.0 -0.75 -0.62 -0.75 -0.62 -0.62 -0.50 -0.62 -0.50 -0.75 -0.62 -0.75 -0.62 -1.0 -0.88 -1.0 -0.88 -0.88 -0.75 -0.88 -0.75 -1.0 -0.88 -1.0 -0.88 -0.50 -0.38 -0.50 -0.38 -0.38 -0.25 -0.38 -0.25 -0.38 -0.25 -0.38 -0.25 -1.0 -0.88 -1.0 -0.88 -1.0 -0.88 -1.0 -0.88 -0.88 -0.75 -0.88 -0.75 0.50 0.62 0.50 0.62 0.62 0.75 0.62 0.75 0.62 0.75 0.62 0.75 0.75 0.88 0.75 0.88 0.88 1.0 0.88 1.0 0.88 1.0 0.88 1.0 0.88 1.0 0.88 1.0 0.75 0.88 0.75 0.88 0.88 1.0 0.88 1.0 0.62 0.75 0.62 0.75 0.50 0.62 0.50 0.62 0.62 0.75 0.62 0.75 -1.0 -0.88 -1.0 -0.88 -1.0 -0.88 -1.0 -0.88 -0.88 -0.75 -0.88 -0.75 -0.75 -0.62 -0.75 -0.62 -0.75 -0.62 -0.75 -0.62 -0.62 -0.50 -0.62 -0.50 -0.12 0.0 -0.12 0.0 -0.25 -0.12 -0.25 -0.12 -0.12 0.0 -0.12 0.0 -0.38 -0.25 -0.38 -0.25 -0.50 -0.38 -0.50 -0.38 -0.38 -0.25 -0.38 -0.25 0.25 0.38 0.25 0.38 0.38 0.50 0.38 0.50 0.25 0.38 0.25 0.38 0.38 0.50 0.38 0.50 0.0 0.12 0.0 0.12 0.12 0.25 0.12 0.25 0.0 0.12 0.0 0.12 0.12 0.25 0.12 0.25 0.50 0.62 0.50 0.62 0.62 0.75 0.62 0.75 0.50 0.62 0.50 0.62 0.62 0.75 0.62 0.75 0.0 0.12 0.0 0.12 0.12 0.25 0.12 0.25 0.0 0.12 0.0 0.12 0.12 0.25 0.12 0.25 0.0 0.12 0.0 0.12 0.12 0.25 0.12 0.25 0.0 0.12 0.0 0.12 0.12 0.25 0.12 0.25 -1.0 -0.88 -1.0 -0.88 -0.88 -0.75 -0.88 -0.75 -1.0 -0.88 -1.0 -0.88 -0.88 -0.75 -0.88 -0.75 -0.25 -0.12 -0.25 -0.12 -0.12 0.0 -0.12 0.0 -0.25 -0.12 -0.25 -0.12 -0.12 0.0 -0.12 0.0 -1.0 -0.88 -1.0 -0.88 -0.88 -0.75 -0.88 -0.75 -1.0 -0.88 -1.0 -0.88 -0.88 -0.75 -0.88 -0.75 0.38 0.44 0.38 0.44 0.44 0.50 0.44 0.50 0.38 0.44 0.38 0.44 0.44 0.50 0.44 0.50 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 0.38 0.44 0.38 0.44 0.44 0.50 0.44 0.50 0.38 0.44 0.38 0.44 0.44 0.50 0.44 0.50 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 0.50 0.56 0.50 0.56 0.56 0.62 0.56 0.62 0.50 0.56 0.50 0.56 0.56 0.62 0.56 0.62 0.62 0.69 0.62 0.69 0.69 0.75 0.69 0.75 0.62 0.69 0.62 0.69 0.69 0.75 0.69 0.75 0.50 0.56 0.50 0.56 0.56 0.62 0.56 0.62 0.50 0.56 0.50 0.56 0.56 0.62 0.56 0.62 0.62 0.69 0.62 0.69 0.69 0.75 0.69 0.75 0.62 0.69 0.62 0.69 0.69 0.75 0.69 0.75 0.50 0.56 0.50 0.56 0.56 0.62 0.56 0.62 0.50 0.56 0.50 0.56 0.56 0.62 0.56 0.62 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.38 -0.31 -0.38 -0.31 -0.31 -0.25 -0.31 -0.25 -0.38 -0.31 -0.38 -0.31 -0.31 -0.25 -0.31 -0.25 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 0.25 0.31 0.25 0.31 0.31 0.38 0.31 0.38 0.25 0.31 0.25 0.31 0.31 0.38 0.31 0.38 0.38 0.44 0.38 0.44 0.44 0.50 0.44 0.50 0.38 0.44 0.38 0.44 0.44 0.50 0.44 0.50 0.25 0.31 0.25 0.31 0.31 0.38 0.31 0.38 0.25 0.31 0.25 0.31 0.31 0.38 0.31 0.38 0.25 0.31 0.25 0.31 0.31 0.38 0.31 0.38 0.25 0.31 0.25 0.31 0.31 0.38 0.31 0.38 0.25 0.31 0.25 0.31 0.31 0.38 0.31 0.38 0.25 0.31 0.25 0.31 0.31 0.38 0.31 0.38 0.38 0.44 0.38 0.44 0.44 0.50 0.44 0.50 0.38 0.44 0.38 0.44 0.44 0.50 0.44 0.50 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.38 -0.31 -0.38 -0.31 -0.31 -0.25 -0.31 -0.25 -0.38 -0.31 -0.38 -0.31 -0.31 -0.25 -0.31 -0.25 -0.38 -0.31 -0.38 -0.31 -0.31 -0.25 -0.31 -0.25 -0.38 -0.31 -0.38 -0.31 -0.31 -0.25 -0.31 -0.25 -0.38 -0.31 -0.38 -0.31 -0.31 -0.25 -0.31 -0.25 -0.38 -0.31 -0.38 -0.31 -0.31 -0.25 -0.31 -0.25 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.38 -0.31 -0.38 -0.31 -0.31 -0.25 -0.31 -0.25 -0.38 -0.31 -0.38 -0.31 -0.31 -0.25 -0.31 -0.25 -0.25 -0.19 -0.25 -0.19 -0.19 -0.12 -0.19 -0.12 -0.25 -0.19 -0.25 -0.19 -0.19 -0.12 -0.19 -0.12 -0.12 -0.062 -0.12 -0.062 -0.062 0.0 -0.062 0.0 -0.12 -0.062 -0.12 -0.062 -0.062 0.0 -0.062 0.0 -0.12 -0.062 -0.12 -0.062 -0.062 0.0 -0.062 0.0 -0.12 -0.062 -0.12 -0.062 -0.062 0.0 -0.062 0.0 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.38 -0.31 -0.38 -0.31 -0.31 -0.25 -0.31 -0.25 -0.38 -0.31 -0.38 -0.31 -0.31 -0.25 -0.31 -0.25 0.0 0.062 0.0 0.062 0.062 0.12 0.062 0.12 0.0 0.062 0.0 0.062 0.062 0.12 0.062 0.12 0.0 0.062 0.0 0.062 0.062 0.12 0.062 0.12 0.0 0.062 0.0 0.062 0.062 0.12 0.062 0.12 0.12 0.19 0.12 0.19 0.19 0.25 0.19 0.25 0.12 0.19 0.12 0.19 0.19 0.25 0.19 0.25 0.0 0.062 0.0 0.062 0.062 0.12 0.062 0.12 0.0 0.062 0.0 0.062 0.062 0.12 0.062 0.12 0.12 0.19 0.12 0.19 0.19 0.25 0.19 0.25 0.12 0.19 0.12 0.19 0.19 0.25 0.19 0.25 0.0 0.062 0.0 0.062 0.062 0.12 0.062 0.12 0.0 0.062 0.0 0.062 0.062 0.12 0.062 0.12 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.38 -0.31 -0.38 -0.31 -0.31 -0.25 -0.31 -0.25 -0.38 -0.31 -0.38 -0.31 -0.31 -0.25 -0.31 -0.25 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.38 -0.31 -0.38 -0.31 -0.31 -0.25 -0.31 -0.25 -0.38 -0.31 -0.38 -0.31 -0.31 -0.25 -0.31 -0.25 -0.38 -0.31 -0.38 -0.31 -0.31 -0.25 -0.31 -0.25 -0.38 -0.31 -0.38 -0.31 -0.31 -0.25 -0.31 -0.25 -0.12 -0.062 -0.12 -0.062 -0.062 0.0 -0.062 0.0 -0.12 -0.062 -0.12 -0.062 -0.062 0.0 -0.062 0.0 -0.25 -0.19 -0.25 -0.19 -0.19 -0.12 -0.19 -0.12 -0.25 -0.19 -0.25 -0.19 -0.19 -0.12 -0.19 -0.12 -0.12 -0.062 -0.12 -0.062 -0.062 0.0 -0.062 0.0 -0.12 -0.062 -0.12 -0.062 -0.062 0.0 -0.062 0.0 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 0.50 0.56 0.50 0.56 0.56 0.62 0.56 0.62 0.50 0.56 0.50 0.56 0.56 0.62 0.56 0.62 0.62 0.69 0.62 0.69 0.69 0.75 0.69 0.75 0.62 0.69 0.62 0.69 0.69 0.75 0.69 0.75 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 -0.75 -0.69 -0.75 -0.69 -0.69 -0.62 -0.69 -0.62 0.38 0.44 0.38 0.44 0.44 0.50 0.44 0.50 0.38 0.44 0.38 0.44 0.44 0.50 0.44 0.50 0.38 0.44 0.38 0.44 0.44 0.50 0.44 0.50 0.38 0.44 0.38 0.44 0.44 0.50 0.44 0.50 0.38 0.44 0.38 0.44 0.44 0.50 0.44 0.50 0.38 0.44 0.38 0.44 0.44 0.50 0.44 0.50 -0.88 -0.81 -0.88 -0.81 -0.81 -0.75 -0.81 -0.75 -0.88 -0.81 -0.88 -0.81 -0.81 -0.75 -0.81 -0.75 -0.25 -0.19 -0.25 -0.19 -0.19 -0.12 -0.19 -0.12 -0.25 -0.19 -0.25 -0.19 -0.19 -0.12 -0.19 -0.12 -0.12 -0.062 -0.12 -0.062 -0.062 0.0 -0.062 0.0 -0.12 -0.062 -0.12 -0.062 -0.062 0.0 -0.062 0.0 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.88 -0.81 -0.88 -0.81 -0.81 -0.75 -0.81 -0.75 -0.88 -0.81 -0.88 -0.81 -0.81 -0.75 -0.81 -0.75 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.88 -0.81 -0.88 -0.81 -0.81 -0.75 -0.81 -0.75 -0.88 -0.81 -0.88 -0.81 -0.81 -0.75 -0.81 -0.75 0.50 0.56 0.50 0.56 0.56 0.62 0.56 0.62 0.50 0.56 0.50 0.56 0.56 0.62 0.56 0.62 0.75 0.81 0.75 0.81 0.81 0.88 0.81 0.88 0.75 0.81 0.75 0.81 0.81 0.88 0.81 0.88 0.75 0.81 0.75 0.81 0.81 0.88 0.81 0.88 0.75 0.81 0.75 0.81 0.81 0.88 0.81 0.88 0.50 0.56 0.50 0.56 0.56 0.62 0.56 0.62 0.50 0.56 0.50 0.56 0.56 0.62 0.56 0.62 -0.88 -0.81 -0.88 -0.81 -0.81 -0.75 -0.81 -0.75 -0.88 -0.81 -0.88 -0.81 -0.81 -0.75 -0.81 -0.75 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.62 -0.56 -0.62 -0.56 -0.56 -0.50 -0.56 -0.50 -0.25 -0.19 -0.25 -0.19 -0.19 -0.12 -0.19 -0.12 -0.25 -0.19 -0.25 -0.19 -0.19 -0.12 -0.19 -0.12 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.50 -0.44 -0.50 -0.44 -0.44 -0.38 -0.44 -0.38 -0.50 0.50 1.0 1.0 -1.0 -1.0 -0.75 -0.75 -1.0 -1.0 -0.75 -0.75 -0.25 -0.25 0.0 0.0 0.75 0.75 1.0 1.0 0.75 0.75 1.0 1.0 0.0 0.0 0.25 0.25 0.25 0.25 0.50 0.50 0.0 0.0 0.25 0.25 0.25 0.25 0.50 0.50 0.25 0.25 0.50 0.50 0.50 0.50 0.75 0.75 0.75 0.75 1.0 1.0 0.75 0.75 1.0 1.0 -0.38 -0.38 -0.25 -0.25 -0.25 -0.25 -0.12 -0.12 -0.75 -0.75 -0.62 -0.62 -0.38 -0.38 -0.25 -0.25 0.12 0.12 0.25 0.25 0.12 0.12 0.25 0.25 -0.75 -0.75 -0.62 -0.62 -0.25 -0.25 -0.12 -0.12 -0.38 -0.38 -0.25 -0.25 0.62 0.62 0.75 0.75 -0.25 -0.25 -0.12 -0.12 -0.25 -0.25 -0.12 -0.12 -0.12 -0.12 0.0 0.0 -0.12 -0.12 0.0 0.0 -1.0 -1.0 -0.88 -0.88 -1.0 -1.0 -0.88 -0.88 -0.88 -0.88 -0.75 -0.75 -0.25 -0.25 -0.12 -0.12 -0.25 -0.25 -0.12 -0.12 -0.12 -0.12 0.0 0.0 -0.12 -0.12 0.0 0.0 -0.25 -0.25 -0.12 -0.12 -0.12 -0.12 0.0 0.0 0.25 0.25 0.38 0.38 0.25 0.25 0.38 0.38 0.38 0.38 0.50 0.50 0.0 0.0 0.12 0.12 0.0 0.0 0.12 0.12 0.12 0.12 0.25 0.25 0.12 0.12 0.25 0.25 0.25 0.25 0.38 0.38 0.25 0.25 0.38 0.38 -1.0 -1.0 -0.88 -0.88 -1.0 -1.0 -0.88 -0.88 -0.88 -0.88 -0.75 -0.75 -0.75 -0.75 -0.62 -0.62 -0.75 -0.75 -0.62 -0.62 -0.62 -0.62 -0.50 -0.50 -1.0 -1.0 -0.88 -0.88 -1.0 -1.0 -0.88 -0.88 -0.88 -0.88 -0.75 -0.75 -0.50 -0.50 -0.38 -0.38 -0.38 -0.38 -0.25 -0.25 -0.38 -0.38 -0.25 -0.25 -1.0 -1.0 -0.88 -0.88 -1.0 -1.0 -0.88 -0.88 -0.88 -0.88 -0.75 -0.75 -0.75 -0.75 -0.62 -0.62 -0.75 -0.75 -0.62 -0.62 -0.62 -0.62 -0.50 -0.50 -0.50 -0.50 -0.38 -0.38 -0.38 -0.38 -0.25 -0.25 -0.38 -0.38 -0.25 -0.25 -0.25 -0.25 -0.12 -0.12 -0.12 -0.12 0.0 0.0 -0.12 -0.12 0.0 0.0 0.50 0.50 0.62 0.62 0.62 0.62 0.75 0.75 0.62 0.62 0.75 0.75 0.75 0.75 0.88 0.88 0.88 0.88 1.0 1.0 0.88 0.88 1.0 1.0 0.50 0.50 0.62 0.62 0.62 0.62 0.75 0.75 0.62 0.62 0.75 0.75 0.75 0.75 0.88 0.88 0.88 0.88 1.0 1.0 0.88 0.88 1.0 1.0 0.0 0.0 0.12 0.12 0.0 0.0 0.12 0.12 0.12 0.12 0.25 0.25 0.12 0.12 0.25 0.25 0.25 0.25 0.38 0.38 0.25 0.25 0.38 0.38 0.38 0.38 0.50 0.50 0.38 0.38 0.50 0.50 0.0 0.0 0.12 0.12 0.0 0.0 0.12 0.12 0.12 0.12 0.25 0.25 0.12 0.12 0.25 0.25 0.50 0.50 0.62 0.62 0.50 0.50 0.62 0.62 0.62 0.62 0.75 0.75 0.62 0.62 0.75 0.75 -1.0 -1.0 -0.88 -0.88 -1.0 -1.0 -0.88 -0.88 -0.88 -0.88 -0.75 -0.75 -0.88 -0.88 -0.75 -0.75 0.0 0.0 0.12 0.12 0.0 0.0 0.12 0.12 0.12 0.12 0.25 0.25 0.12 0.12 0.25 0.25 -1.0 -1.0 -0.88 -0.88 -1.0 -1.0 -0.88 -0.88 -0.88 -0.88 -0.75 -0.75 -0.88 -0.88 -0.75 -0.75 -0.25 -0.25 -0.12 -0.12 -0.25 -0.25 -0.12 -0.12 -0.12 -0.12 0.0 0.0 -0.12 -0.12 0.0 0.0 -0.62 -0.62 -0.56 -0.56 -0.62 -0.62 -0.56 -0.56 -0.56 -0.56 -0.50 -0.50 -0.56 -0.56 -0.50 -0.50 0.38 0.38 0.44 0.44 0.38 0.38 0.44 0.44 0.44 0.44 0.50 0.50 0.44 0.44 0.50 0.50 -0.50 -0.50 -0.44 -0.44 -0.50 -0.50 -0.44 -0.44 -0.44 -0.44 -0.38 -0.38 -0.44 -0.44 -0.38 -0.38 0.38 0.38 0.44 0.44 0.38 0.38 0.44 0.44 0.44 0.44 0.50 0.50 0.44 0.44 0.50 0.50 -0.50 -0.50 -0.44 -0.44 -0.50 -0.50 -0.44 -0.44 -0.44 -0.44 -0.38 -0.38 -0.44 -0.44 -0.38 -0.38 -0.62 -0.62 -0.56 -0.56 -0.62 -0.62 -0.56 -0.56 -0.56 -0.56 -0.50 -0.50 -0.56 -0.56 -0.50 -0.50 -0.62 -0.62 -0.56 -0.56 -0.62 -0.62 -0.56 -0.56 -0.56 -0.56 -0.50 -0.50 -0.56 -0.56 -0.50 -0.50 -0.50 -0.50 -0.44 -0.44 -0.50 -0.50 -0.44 -0.44 -0.44 -0.44 -0.38 -0.38 -0.44 -0.44 -0.38 -0.38 -0.62 -0.62 -0.56 -0.56 -0.62 -0.62 -0.56 -0.56 -0.56 -0.56 -0.50 -0.50 -0.56 -0.56 -0.50 -0.50 -0.62 -0.62 -0.56 -0.56 -0.62 -0.62 -0.56 -0.56 -0.56 -0.56 -0.50 -0.50 -0.56 -0.56 -0.50 -0.50 -0.50 -0.50 -0.44 -0.44 -0.50 -0.50 -0.44 -0.44 -0.44 -0.44 -0.38 -0.38 -0.44 -0.44 -0.38 -0.38 -0.50 -0.50 -0.44 -0.44 -0.50 -0.50 -0.44 -0.44 -0.44 -0.44 -0.38 -0.38 -0.44 -0.44 -0.38 -0.38 -0.38 -0.38 -0.31 -0.31 -0.38 -0.38 -0.31 -0.31 -0.31 -0.31 -0.25 -0.25 -0.31 -0.31 -0.25 -0.25 0.50 0.50 0.56 0.56 0.50 0.50 0.56 0.56 0.56 0.56 0.62 0.62 0.56 0.56 0.62 0.62 0.62 0.62 0.69 0.69 0.62 0.62 0.69 0.69 0.69 0.69 0.75 0.75 0.69 0.69 0.75 0.75 0.50 0.50 0.56 0.56 0.50 0.50 0.56 0.56 0.56 0.56 0.62 0.62 0.56 0.56 0.62 0.62 0.50 0.50 0.56 0.56 0.50 0.50 0.56 0.56 0.56 0.56 0.62 0.62 0.56 0.56 0.62 0.62 0.62 0.62 0.69 0.69 0.62 0.62 0.69 0.69 0.69 0.69 0.75 0.75 0.69 0.69 0.75 0.75 -0.75 -0.75 -0.69 -0.69 -0.75 -0.75 -0.69 -0.69 -0.69 -0.69 -0.62 -0.62 -0.69 -0.69 -0.62 -0.62 -0.75 -0.75 -0.69 -0.69 -0.75 -0.75 -0.69 -0.69 -0.69 -0.69 -0.62 -0.62 -0.69 -0.69 -0.62 -0.62 -0.62 -0.62 -0.56 -0.56 -0.62 -0.62 -0.56 -0.56 -0.56 -0.56 -0.50 -0.50 -0.56 -0.56 -0.50 -0.50 -0.50 -0.50 -0.44 -0.44 -0.50 -0.50 -0.44 -0.44 -0.44 -0.44 -0.38 -0.38 -0.44 -0.44 -0.38 -0.38 -0.38 -0.38 -0.31 -0.31 -0.38 -0.38 -0.31 -0.31 -0.31 -0.31 -0.25 -0.25 -0.31 -0.31 -0.25 -0.25 -0.38 -0.38 -0.31 -0.31 -0.38 -0.38 -0.31 -0.31 -0.31 -0.31 -0.25 -0.25 -0.31 -0.31 -0.25 -0.25 0.25 0.25 0.31 0.31 0.25 0.25 0.31 0.31 0.31 0.31 0.38 0.38 0.31 0.31 0.38 0.38 0.25 0.25 0.31 0.31 0.25 0.25 0.31 0.31 0.31 0.31 0.38 0.38 0.31 0.31 0.38 0.38 0.38 0.38 0.44 0.44 0.38 0.38 0.44 0.44 0.44 0.44 0.50 0.50 0.44 0.44 0.50 0.50 0.25 0.25 0.31 0.31 0.25 0.25 0.31 0.31 0.31 0.31 0.38 0.38 0.31 0.31 0.38 0.38 0.25 0.25 0.31 0.31 0.25 0.25 0.31 0.31 0.31 0.31 0.38 0.38 0.31 0.31 0.38 0.38 0.38 0.38 0.44 0.44 0.38 0.38 0.44 0.44 0.44 0.44 0.50 0.50 0.44 0.44 0.50 0.50 -0.50 -0.50 -0.44 -0.44 -0.50 -0.50 -0.44 -0.44 -0.44 -0.44 -0.38 -0.38 -0.44 -0.44 -0.38 -0.38 -0.38 -0.38 -0.31 -0.31 -0.38 -0.38 -0.31 -0.31 -0.31 -0.31 -0.25 -0.25 -0.31 -0.31 -0.25 -0.25 -0.38 -0.38 -0.31 -0.31 -0.38 -0.38 -0.31 -0.31 -0.31 -0.31 -0.25 -0.25 -0.31 -0.31 -0.25 -0.25 -0.50 -0.50 -0.44 -0.44 -0.50 -0.50 -0.44 -0.44 -0.44 -0.44 -0.38 -0.38 -0.44 -0.44 -0.38 -0.38 -0.50 -0.50 -0.44 -0.44 -0.50 -0.50 -0.44 -0.44 -0.44 -0.44 -0.38 -0.38 -0.44 -0.44 -0.38 -0.38 -0.38 -0.38 -0.31 -0.31 -0.38 -0.38 -0.31 -0.31 -0.31 -0.31 -0.25 -0.25 -0.31 -0.31 -0.25 -0.25 -0.25 -0.25 -0.19 -0.19 -0.25 -0.25 -0.19 -0.19 -0.19 -0.19 -0.12 -0.12 -0.19 -0.19 -0.12 -0.12 -0.12 -0.12 -0.062 -0.062 -0.12 -0.12 -0.062 -0.062 -0.062 -0.062 0.0 0.0 -0.062 -0.062 0.0 0.0 -0.12 -0.12 -0.062 -0.062 -0.12 -0.12 -0.062 -0.062 -0.062 -0.062 0.0 0.0 -0.062 -0.062 0.0 0.0 -0.75 -0.75 -0.69 -0.69 -0.75 -0.75 -0.69 -0.69 -0.69 -0.69 -0.62 -0.62 -0.69 -0.69 -0.62 -0.62 -0.62 -0.62 -0.56 -0.56 -0.62 -0.62 -0.56 -0.56 -0.56 -0.56 -0.50 -0.50 -0.56 -0.56 -0.50 -0.50 -0.62 -0.62 -0.56 -0.56 -0.62 -0.62 -0.56 -0.56 -0.56 -0.56 -0.50 -0.50 -0.56 -0.56 -0.50 -0.50 -0.50 -0.50 -0.44 -0.44 -0.50 -0.50 -0.44 -0.44 -0.44 -0.44 -0.38 -0.38 -0.44 -0.44 -0.38 -0.38 -0.50 -0.50 -0.44 -0.44 -0.50 -0.50 -0.44 -0.44 -0.44 -0.44 -0.38 -0.38 -0.44 -0.44 -0.38 -0.38 -0.38 -0.38 -0.31 -0.31 -0.38 -0.38 -0.31 -0.31 -0.31 -0.31 -0.25 -0.25 -0.31 -0.31 -0.25 -0.25 0.0 0.0 0.062 0.062 0.0 0.0 0.062 0.062 0.062 0.062 0.12 0.12 0.062 0.062 0.12 0.12 0.0 0.0 0.062 0.062 0.0 0.0 0.062 0.062 0.062 0.062 0.12 0.12 0.062 0.062 0.12 0.12 0.12 0.12 0.19 0.19 0.12 0.12 0.19 0.19 0.19 0.19 0.25 0.25 0.19 0.19 0.25 0.25 0.0 0.0 0.062 0.062 0.0 0.0 0.062 0.062 0.062 0.062 0.12 0.12 0.062 0.062 0.12 0.12 0.0 0.0 0.062 0.062 0.0 0.0 0.062 0.062 0.062 0.062 0.12 0.12 0.062 0.062 0.12 0.12 0.12 0.12 0.19 0.19 0.12 0.12 0.19 0.19 0.19 0.19 0.25 0.25 0.19 0.19 0.25 0.25 -0.75 -0.75 -0.69 -0.69 -0.75 -0.75 -0.69 -0.69 -0.69 -0.69 -0.62 -0.62 -0.69 -0.69 -0.62 -0.62 -0.75 -0.75 -0.69 -0.69 -0.75 -0.75 -0.69 -0.69 -0.69 -0.69 -0.62 -0.62 -0.69 -0.69 -0.62 -0.62 -0.62 -0.62 -0.56 -0.56 -0.62 -0.62 -0.56 -0.56 -0.56 -0.56 -0.50 -0.50 -0.56 -0.56 -0.50 -0.50 -0.75 -0.75 -0.69 -0.69 -0.75 -0.75 -0.69 -0.69 -0.69 -0.69 -0.62 -0.62 -0.69 -0.69 -0.62 -0.62 -0.75 -0.75 -0.69 -0.69 -0.75 -0.75 -0.69 -0.69 -0.69 -0.69 -0.62 -0.62 -0.69 -0.69 -0.62 -0.62 -0.62 -0.62 -0.56 -0.56 -0.62 -0.62 -0.56 -0.56 -0.56 -0.56 -0.50 -0.50 -0.56 -0.56 -0.50 -0.50 -0.75 -0.75 -0.69 -0.69 -0.75 -0.75 -0.69 -0.69 -0.69 -0.69 -0.62 -0.62 -0.69 -0.69 -0.62 -0.62 -0.62 -0.62 -0.56 -0.56 -0.62 -0.62 -0.56 -0.56 -0.56 -0.56 -0.50 -0.50 -0.56 -0.56 -0.50 -0.50 -0.62 -0.62 -0.56 -0.56 -0.62 -0.62 -0.56 -0.56 -0.56 -0.56 -0.50 -0.50 -0.56 -0.56 -0.50 -0.50 -0.50 -0.50 -0.44 -0.44 -0.50 -0.50 -0.44 -0.44 -0.44 -0.44 -0.38 -0.38 -0.44 -0.44 -0.38 -0.38 -0.38 -0.38 -0.31 -0.31 -0.38 -0.38 -0.31 -0.31 -0.31 -0.31 -0.25 -0.25 -0.31 -0.31 -0.25 -0.25 -0.38 -0.38 -0.31 -0.31 -0.38 -0.38 -0.31 -0.31 -0.31 -0.31 -0.25 -0.25 -0.31 -0.31 -0.25 -0.25 -0.25 -0.25 -0.19 -0.19 -0.25 -0.25 -0.19 -0.19 -0.19 -0.19 -0.12 -0.12 -0.19 -0.19 -0.12 -0.12 -0.12 -0.12 -0.062 -0.062 -0.12 -0.12 -0.062 -0.062 -0.062 -0.062 0.0 0.0 -0.062 -0.062 0.0 0.0 -0.12 -0.12 -0.062 -0.062 -0.12 -0.12 -0.062 -0.062 -0.062 -0.062 0.0 0.0 -0.062 -0.062 0.0 0.0 -0.75 -0.75 -0.69 -0.69 -0.75 -0.75 -0.69 -0.69 -0.69 -0.69 -0.62 -0.62 -0.69 -0.69 -0.62 -0.62 -0.75 -0.75 -0.69 -0.69 -0.75 -0.75 -0.69 -0.69 -0.69 -0.69 -0.62 -0.62 -0.69 -0.69 -0.62 -0.62 0.50 0.50 0.56 0.56 0.50 0.50 0.56 0.56 0.56 0.56 0.62 0.62 0.56 0.56 0.62 0.62 0.62 0.62 0.69 0.69 0.62 0.62 0.69 0.69 0.69 0.69 0.75 0.75 0.69 0.69 0.75 0.75 -0.88 -0.88 -0.81 -0.81 -0.88 -0.88 -0.81 -0.81 -0.81 -0.81 -0.75 -0.75 -0.81 -0.81 -0.75 -0.75 -0.25 -0.25 -0.19 -0.19 -0.25 -0.25 -0.19 -0.19 -0.19 -0.19 -0.12 -0.12 -0.19 -0.19 -0.12 -0.12 -0.12 -0.12 -0.062 -0.062 -0.12 -0.12 -0.062 -0.062 -0.062 -0.062 0.0 0.0 -0.062 -0.062 0.0 0.0 0.38 0.38 0.44 0.44 0.38 0.38 0.44 0.44 0.44 0.44 0.50 0.50 0.44 0.44 0.50 0.50 0.38 0.38 0.44 0.44 0.38 0.38 0.44 0.44 0.44 0.44 0.50 0.50 0.44 0.44 0.50 0.50 0.38 0.38 0.44 0.44 0.38 0.38 0.44 0.44 0.44 0.44 0.50 0.50 0.44 0.44 0.50 0.50 -0.88 -0.88 -0.81 -0.81 -0.88 -0.88 -0.81 -0.81 -0.81 -0.81 -0.75 -0.75 -0.81 -0.81 -0.75 -0.75 -0.62 -0.62 -0.56 -0.56 -0.62 -0.62 -0.56 -0.56 -0.56 -0.56 -0.50 -0.50 -0.56 -0.56 -0.50 -0.50 -0.88 -0.88 -0.81 -0.81 -0.88 -0.88 -0.81 -0.81 -0.81 -0.81 -0.75 -0.75 -0.81 -0.81 -0.75 -0.75 -0.50 -0.50 -0.44 -0.44 -0.50 -0.50 -0.44 -0.44 -0.44 -0.44 -0.38 -0.38 -0.44 -0.44 -0.38 -0.38 -0.88 -0.88 -0.81 -0.81 -0.88 -0.88 -0.81 -0.81 -0.81 -0.81 -0.75 -0.75 -0.81 -0.81 -0.75 -0.75 -0.62 -0.62 -0.56 -0.56 -0.62 -0.62 -0.56 -0.56 -0.56 -0.56 -0.50 -0.50 -0.56 -0.56 -0.50 -0.50 -0.50 -0.50 -0.44 -0.44 -0.50 -0.50 -0.44 -0.44 -0.44 -0.44 -0.38 -0.38 -0.44 -0.44 -0.38 -0.38 -0.25 -0.25 -0.19 -0.19 -0.25 -0.25 -0.19 -0.19 -0.19 -0.19 -0.12 -0.12 -0.19 -0.19 -0.12 -0.12 0.50 0.50 0.56 0.56 0.50 0.50 0.56 0.56 0.56 0.56 0.62 0.62 0.56 0.56 0.62 0.62 0.75 0.75 0.81 0.81 0.75 0.75 0.81 0.81 0.81 0.81 0.88 0.88 0.81 0.81 0.88 0.88 0.50 0.50 0.56 0.56 0.50 0.50 0.56 0.56 0.56 0.56 0.62 0.62 0.56 0.56 0.62 0.62 0.75 0.75 0.81 0.81 0.75 0.75 0.81 0.81 0.81 0.81 0.88 0.88 0.81 0.81 0.88 0.88 -0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -cells 466 -quad 4 -1 2 4 3 -quad 4 -5 6 8 7 -quad 4 -9 10 12 11 -quad 4 -13 14 16 15 -quad 4 -17 18 20 19 -quad 4 -21 22 24 23 -quad 4 -25 26 28 27 -quad 4 -29 30 32 31 -quad 4 -33 34 36 35 -quad 4 -37 38 40 39 -quad 4 -41 42 44 43 -quad 4 -45 46 48 47 -quad 4 -49 50 52 51 -quad 4 -53 54 56 55 -quad 4 -57 58 60 59 -quad 4 -61 62 64 63 -quad 4 -65 66 68 67 -quad 4 -69 70 72 71 -quad 4 -73 74 76 75 -quad 4 -77 78 80 79 -quad 4 -81 82 84 83 -quad 4 -85 86 88 87 -quad 4 -89 90 92 91 -quad 4 -93 94 96 95 -quad 4 -97 98 100 99 -quad 4 -101 102 104 103 -quad 4 -105 106 108 107 -quad 4 -109 110 112 111 -quad 4 -113 114 116 115 -quad 4 -117 118 120 119 -quad 4 -121 122 124 123 -quad 4 -125 126 128 127 -quad 4 -129 130 132 131 -quad 4 -133 134 136 135 -quad 4 -137 138 140 139 -quad 4 -141 142 144 143 -quad 4 -145 146 148 147 -quad 4 -149 150 152 151 -quad 4 -153 154 156 155 -quad 4 -157 158 160 159 -quad 4 -161 162 164 163 -quad 4 -165 166 168 167 -quad 4 -169 170 172 171 -quad 4 -173 174 176 175 -quad 4 -177 178 180 179 -quad 4 -181 182 184 183 -quad 4 -185 186 188 187 -quad 4 -189 190 192 191 -quad 4 -193 194 196 195 -quad 4 -197 198 200 199 -quad 4 -201 202 204 203 -quad 4 -205 206 208 207 -quad 4 -209 210 212 211 -quad 4 -213 214 216 215 -quad 4 -217 218 220 219 -quad 4 -221 222 224 223 -quad 4 -225 226 228 227 -quad 4 -229 230 232 231 -quad 4 -233 234 236 235 -quad 4 -237 238 240 239 -quad 4 -241 242 244 243 -quad 4 -245 246 248 247 -quad 4 -249 250 252 251 -quad 4 -253 254 256 255 -quad 4 -257 258 260 259 -quad 4 -261 262 264 263 -quad 4 -265 266 268 267 -quad 4 -269 270 272 271 -quad 4 -273 274 276 275 -quad 4 -277 278 280 279 -quad 4 -281 282 284 283 -quad 4 -285 286 288 287 -quad 4 -289 290 292 291 -quad 4 -293 294 296 295 -quad 4 -297 298 300 299 -quad 4 -301 302 304 303 -quad 4 -305 306 308 307 -quad 4 -309 310 312 311 -quad 4 -313 314 316 315 -quad 4 -317 318 320 319 -quad 4 -321 322 324 323 -quad 4 -325 326 328 327 -quad 4 -329 330 332 331 -quad 4 -333 334 336 335 -quad 4 -337 338 340 339 -quad 4 -341 342 344 343 -quad 4 -345 346 348 347 -quad 4 -349 350 352 351 -quad 4 -353 354 356 355 -quad 4 -357 358 360 359 -quad 4 -361 362 364 363 -quad 4 -365 366 368 367 -quad 4 -369 370 372 371 -quad 4 -373 374 376 375 -quad 4 -377 378 380 379 -quad 4 -381 382 384 383 -quad 4 -385 386 388 387 -quad 4 -389 390 392 391 -quad 4 -393 394 396 395 -quad 4 -397 398 400 399 -quad 4 -401 402 404 403 -quad 4 -405 406 408 407 -quad 4 -409 410 412 411 -quad 4 -413 414 416 415 -quad 4 -417 418 420 419 -quad 4 -421 422 424 423 -quad 4 -425 426 428 427 -quad 4 -429 430 432 431 -quad 4 -433 434 436 435 -quad 4 -437 438 440 439 -quad 4 -441 442 444 443 -quad 4 -445 446 448 447 -quad 4 -449 450 452 451 -quad 4 -453 454 456 455 -quad 4 -457 458 460 459 -quad 4 -461 462 464 463 -quad 4 -465 466 468 467 -quad 4 -469 470 472 471 -quad 4 -473 474 476 475 -quad 4 -477 478 480 479 -quad 4 -481 482 484 483 -quad 4 -485 486 488 487 -quad 4 -489 490 492 491 -quad 4 -493 494 496 495 -quad 4 -497 498 500 499 -quad 4 -501 502 504 503 -quad 4 -505 506 508 507 -quad 4 -509 510 512 511 -quad 4 -513 514 516 515 -quad 4 -517 518 520 519 -quad 4 -521 522 524 523 -quad 4 -525 526 528 527 -quad 4 -529 530 532 531 -quad 4 -533 534 536 535 -quad 4 -537 538 540 539 -quad 4 -541 542 544 543 -quad 4 -545 546 548 547 -quad 4 -549 550 552 551 -quad 4 -553 554 556 555 -quad 4 -557 558 560 559 -quad 4 -561 562 564 563 -quad 4 -565 566 568 567 -quad 4 -569 570 572 571 -quad 4 -573 574 576 575 -quad 4 -577 578 580 579 -quad 4 -581 582 584 583 -quad 4 -585 586 588 587 -quad 4 -589 590 592 591 -quad 4 -593 594 596 595 -quad 4 -597 598 600 599 -quad 4 -601 602 604 603 -quad 4 -605 606 608 607 -quad 4 -609 610 612 611 -quad 4 -613 614 616 615 -quad 4 -617 618 620 619 -quad 4 -621 622 624 623 -quad 4 -625 626 628 627 -quad 4 -629 630 632 631 -quad 4 -633 634 636 635 -quad 4 -637 638 640 639 -quad 4 -641 642 644 643 -quad 4 -645 646 648 647 -quad 4 -649 650 652 651 -quad 4 -653 654 656 655 -quad 4 -657 658 660 659 -quad 4 -661 662 664 663 -quad 4 -665 666 668 667 -quad 4 -669 670 672 671 -quad 4 -673 674 676 675 -quad 4 -677 678 680 679 -quad 4 -681 682 684 683 -quad 4 -685 686 688 687 -quad 4 -689 690 692 691 -quad 4 -693 694 696 695 -quad 4 -697 698 700 699 -quad 4 -701 702 704 703 -quad 4 -705 706 708 707 -quad 4 -709 710 712 711 -quad 4 -713 714 716 715 -quad 4 -717 718 720 719 -quad 4 -721 722 724 723 -quad 4 -725 726 728 727 -quad 4 -729 730 732 731 -quad 4 -733 734 736 735 -quad 4 -737 738 740 739 -quad 4 -741 742 744 743 -quad 4 -745 746 748 747 -quad 4 -749 750 752 751 -quad 4 -753 754 756 755 -quad 4 -757 758 760 759 -quad 4 -761 762 764 763 -quad 4 -765 766 768 767 -quad 4 -769 770 772 771 -quad 4 -773 774 776 775 -quad 4 -777 778 780 779 -quad 4 -781 782 784 783 -quad 4 -785 786 788 787 -quad 4 -789 790 792 791 -quad 4 -793 794 796 795 -quad 4 -797 798 800 799 -quad 4 -801 802 804 803 -quad 4 -805 806 808 807 -quad 4 -809 810 812 811 -quad 4 -813 814 816 815 -quad 4 -817 818 820 819 -quad 4 -821 822 824 823 -quad 4 -825 826 828 827 -quad 4 -829 830 832 831 -quad 4 -833 834 836 835 -quad 4 -837 838 840 839 -quad 4 -841 842 844 843 -quad 4 -845 846 848 847 -quad 4 -849 850 852 851 -quad 4 -853 854 856 855 -quad 4 -857 858 860 859 -quad 4 -861 862 864 863 -quad 4 -865 866 868 867 -quad 4 -869 870 872 871 -quad 4 -873 874 876 875 -quad 4 -877 878 880 879 -quad 4 -881 882 884 883 -quad 4 -885 886 888 887 -quad 4 -889 890 892 891 -quad 4 -893 894 896 895 -quad 4 -897 898 900 899 -quad 4 -901 902 904 903 -quad 4 -905 906 908 907 -quad 4 -909 910 912 911 -quad 4 -913 914 916 915 -quad 4 -917 918 920 919 -quad 4 -921 922 924 923 -quad 4 -925 926 928 927 -quad 4 -929 930 932 931 -quad 4 -933 934 936 935 -quad 4 -937 938 940 939 -quad 4 -941 942 944 943 -quad 4 -945 946 948 947 -quad 4 -949 950 952 951 -quad 4 -953 954 956 955 -quad 4 -957 958 960 959 -quad 4 -961 962 964 963 -quad 4 -965 966 968 967 -quad 4 -969 970 972 971 -quad 4 -973 974 976 975 -quad 4 -977 978 980 979 -quad 4 -981 982 984 983 -quad 4 -985 986 988 987 -quad 4 -989 990 992 991 -quad 4 -993 994 996 995 -quad 4 -997 998 1000 999 -quad 4 -1001 1002 1004 1003 -quad 4 -1005 1006 1008 1007 -quad 4 -1009 1010 1012 1011 -quad 4 -1013 1014 1016 1015 -quad 4 -1017 1018 1020 1019 -quad 4 -1021 1022 1024 1023 -quad 4 -1025 1026 1028 1027 -quad 4 -1029 1030 1032 1031 -quad 4 -1033 1034 1036 1035 -quad 4 -1037 1038 1040 1039 -quad 4 -1041 1042 1044 1043 -quad 4 -1045 1046 1048 1047 -quad 4 -1049 1050 1052 1051 -quad 4 -1053 1054 1056 1055 -quad 4 -1057 1058 1060 1059 -quad 4 -1061 1062 1064 1063 -quad 4 -1065 1066 1068 1067 -quad 4 -1069 1070 1072 1071 -quad 4 -1073 1074 1076 1075 -quad 4 -1077 1078 1080 1079 -quad 4 -1081 1082 1084 1083 -quad 4 -1085 1086 1088 1087 -quad 4 -1089 1090 1092 1091 -quad 4 -1093 1094 1096 1095 -quad 4 -1097 1098 1100 1099 -quad 4 -1101 1102 1104 1103 -quad 4 -1105 1106 1108 1107 -quad 4 -1109 1110 1112 1111 -quad 4 -1113 1114 1116 1115 -quad 4 -1117 1118 1120 1119 -quad 4 -1121 1122 1124 1123 -quad 4 -1125 1126 1128 1127 -quad 4 -1129 1130 1132 1131 -quad 4 -1133 1134 1136 1135 -quad 4 -1137 1138 1140 1139 -quad 4 -1141 1142 1144 1143 -quad 4 -1145 1146 1148 1147 -quad 4 -1149 1150 1152 1151 -quad 4 -1153 1154 1156 1155 -quad 4 -1157 1158 1160 1159 -quad 4 -1161 1162 1164 1163 -quad 4 -1165 1166 1168 1167 -quad 4 -1169 1170 1172 1171 -quad 4 -1173 1174 1176 1175 -quad 4 -1177 1178 1180 1179 -quad 4 -1181 1182 1184 1183 -quad 4 -1185 1186 1188 1187 -quad 4 -1189 1190 1192 1191 -quad 4 -1193 1194 1196 1195 -quad 4 -1197 1198 1200 1199 -quad 4 -1201 1202 1204 1203 -quad 4 -1205 1206 1208 1207 -quad 4 -1209 1210 1212 1211 -quad 4 -1213 1214 1216 1215 -quad 4 -1217 1218 1220 1219 -quad 4 -1221 1222 1224 1223 -quad 4 -1225 1226 1228 1227 -quad 4 -1229 1230 1232 1231 -quad 4 -1233 1234 1236 1235 -quad 4 -1237 1238 1240 1239 -quad 4 -1241 1242 1244 1243 -quad 4 -1245 1246 1248 1247 -quad 4 -1249 1250 1252 1251 -quad 4 -1253 1254 1256 1255 -quad 4 -1257 1258 1260 1259 -quad 4 -1261 1262 1264 1263 -quad 4 -1265 1266 1268 1267 -quad 4 -1269 1270 1272 1271 -quad 4 -1273 1274 1276 1275 -quad 4 -1277 1278 1280 1279 -quad 4 -1281 1282 1284 1283 -quad 4 -1285 1286 1288 1287 -quad 4 -1289 1290 1292 1291 -quad 4 -1293 1294 1296 1295 -quad 4 -1297 1298 1300 1299 -quad 4 -1301 1302 1304 1303 -quad 4 -1305 1306 1308 1307 -quad 4 -1309 1310 1312 1311 -quad 4 -1313 1314 1316 1315 -quad 4 -1317 1318 1320 1319 -quad 4 -1321 1322 1324 1323 -quad 4 -1325 1326 1328 1327 -quad 4 -1329 1330 1332 1331 -quad 4 -1333 1334 1336 1335 -quad 4 -1337 1338 1340 1339 -quad 4 -1341 1342 1344 1343 -quad 4 -1345 1346 1348 1347 -quad 4 -1349 1350 1352 1351 -quad 4 -1353 1354 1356 1355 -quad 4 -1357 1358 1360 1359 -quad 4 -1361 1362 1364 1363 -quad 4 -1365 1366 1368 1367 -quad 4 -1369 1370 1372 1371 -quad 4 -1373 1374 1376 1375 -quad 4 -1377 1378 1380 1379 -quad 4 -1381 1382 1384 1383 -quad 4 -1385 1386 1388 1387 -quad 4 -1389 1390 1392 1391 -quad 4 -1393 1394 1396 1395 -quad 4 -1397 1398 1400 1399 -quad 4 -1401 1402 1404 1403 -quad 4 -1405 1406 1408 1407 -quad 4 -1409 1410 1412 1411 -quad 4 -1413 1414 1416 1415 -quad 4 -1417 1418 1420 1419 -quad 4 -1421 1422 1424 1423 -quad 4 -1425 1426 1428 1427 -quad 4 -1429 1430 1432 1431 -quad 4 -1433 1434 1436 1435 -quad 4 -1437 1438 1440 1439 -quad 4 -1441 1442 1444 1443 -quad 4 -1445 1446 1448 1447 -quad 4 -1449 1450 1452 1451 -quad 4 -1453 1454 1456 1455 -quad 4 -1457 1458 1460 1459 -quad 4 -1461 1462 1464 1463 -quad 4 -1465 1466 1468 1467 -quad 4 -1469 1470 1472 1471 -quad 4 -1473 1474 1476 1475 -quad 4 -1477 1478 1480 1479 -quad 4 -1481 1482 1484 1483 -quad 4 -1485 1486 1488 1487 -quad 4 -1489 1490 1492 1491 -quad 4 -1493 1494 1496 1495 -quad 4 -1497 1498 1500 1499 -quad 4 -1501 1502 1504 1503 -quad 4 -1505 1506 1508 1507 -quad 4 -1509 1510 1512 1511 -quad 4 -1513 1514 1516 1515 -quad 4 -1517 1518 1520 1519 -quad 4 -1521 1522 1524 1523 -quad 4 -1525 1526 1528 1527 -quad 4 -1529 1530 1532 1531 -quad 4 -1533 1534 1536 1535 -quad 4 -1537 1538 1540 1539 -quad 4 -1541 1542 1544 1543 -quad 4 -1545 1546 1548 1547 -quad 4 -1549 1550 1552 1551 -quad 4 -1553 1554 1556 1555 -quad 4 -1557 1558 1560 1559 -quad 4 -1561 1562 1564 1563 -quad 4 -1565 1566 1568 1567 -quad 4 -1569 1570 1572 1571 -quad 4 -1573 1574 1576 1575 -quad 4 -1577 1578 1580 1579 -quad 4 -1581 1582 1584 1583 -quad 4 -1585 1586 1588 1587 -quad 4 -1589 1590 1592 1591 -quad 4 -1593 1594 1596 1595 -quad 4 -1597 1598 1600 1599 -quad 4 -1601 1602 1604 1603 -quad 4 -1605 1606 1608 1607 -quad 4 -1609 1610 1612 1611 -quad 4 -1613 1614 1616 1615 -quad 4 -1617 1618 1620 1619 -quad 4 -1621 1622 1624 1623 -quad 4 -1625 1626 1628 1627 -quad 4 -1629 1630 1632 1631 -quad 4 -1633 1634 1636 1635 -quad 4 -1637 1638 1640 1639 -quad 4 -1641 1642 1644 1643 -quad 4 -1645 1646 1648 1647 -quad 4 -1649 1650 1652 1651 -quad 4 -1653 1654 1656 1655 -quad 4 -1657 1658 1660 1659 -quad 4 -1661 1662 1664 1663 -quad 4 -1665 1666 1668 1667 -quad 4 -1669 1670 1672 1671 -quad 4 -1673 1674 1676 1675 -quad 4 -1677 1678 1680 1679 -quad 4 -1681 1682 1684 1683 -quad 4 -1685 1686 1688 1687 -quad 4 -1689 1690 1692 1691 -quad 4 -1693 1694 1696 1695 -quad 4 -1697 1698 1700 1699 -quad 4 -1701 1702 1704 1703 -quad 4 -1705 1706 1708 1707 -quad 4 -1709 1710 1712 1711 -quad 4 -1713 1714 1716 1715 -quad 4 -1717 1718 1720 1719 -quad 4 -1721 1722 1724 1723 -quad 4 -1725 1726 1728 1727 -quad 4 -1729 1730 1732 1731 -quad 4 -1733 1734 1736 1735 -quad 4 -1737 1738 1740 1739 -quad 4 -1741 1742 1744 1743 -quad 4 -1745 1746 1748 1747 -quad 4 -1749 1750 1752 1751 -quad 4 -1753 1754 1756 1755 -quad 4 -1757 1758 1760 1759 -quad 4 -1761 1762 1764 1763 -quad 4 -1765 1766 1768 1767 -quad 4 -1769 1770 1772 1771 -quad 4 -1773 1774 1776 1775 -quad 4 -1777 1778 1780 1779 -quad 4 -1781 1782 1784 1783 -quad 4 -1785 1786 1788 1787 -quad 4 -1789 1790 1792 1791 -quad 4 -1793 1794 1796 1795 -quad 4 -1797 1798 1800 1799 -quad 4 -1801 1802 1804 1803 -quad 4 -1805 1806 1808 1807 -quad 4 -1809 1810 1812 1811 -quad 4 -1813 1814 1816 1815 -quad 4 -1817 1818 1820 1819 -quad 4 -1821 1822 1824 1823 -quad 4 -1825 1826 1828 1827 -quad 4 -1829 1830 1832 1831 -quad 4 -1833 1834 1836 1835 -quad 4 -1837 1838 1840 1839 -quad 4 -1841 1842 1844 1843 -quad 4 -1845 1846 1848 1847 -quad 4 -1849 1850 1852 1851 -quad 4 -1853 1854 1856 1855 -quad 4 -1857 1858 1860 1859 -quad 4 -1861 1862 1864 1863 -variable -solution 1 -0.0027 1.3e-05 1.3e-05 3.4e-10 0.023 0.048 0.048 0.31 0.050 0.011 0.31 0.060 0.31 0.060 0.051 0.011 0.050 0.31 0.011 0.060 0.31 0.051 0.060 0.011 0.033 0.056 0.056 0.0016 0.0016 0.0050 0.0050 0.0027 0.051 0.011 0.00012 0.00067 0.0050 0.00012 0.0027 0.0014 0.00012 0.00067 0.0014 1.3e-05 0.0050 0.0027 0.00012 0.0014 0.051 0.00012 0.011 0.00067 0.00012 0.0014 0.00067 1.3e-05 0.50 0.27 0.33 0.18 0.50 0.33 0.27 0.18 0.17 0.33 0.27 0.50 0.27 0.50 0.18 0.33 0.17 0.27 0.33 0.50 0.27 0.18 0.50 0.33 0.33 0.17 0.50 0.27 0.33 0.50 0.17 0.27 0.76 0.50 0.49 0.31 0.76 0.49 0.50 0.31 0.33 0.18 0.18 0.095 0.18 0.11 0.095 0.064 0.18 0.095 0.11 0.064 0.095 0.064 0.064 0.033 0.061 0.089 0.16 0.24 0.089 0.10 0.24 0.28 0.16 0.24 0.33 0.49 0.11 0.18 0.064 0.089 0.18 0.33 0.089 0.16 0.064 0.089 0.033 0.045 0.089 0.16 0.045 0.056 0.33 0.49 0.16 0.24 0.16 0.24 0.056 0.091 0.061 0.16 0.089 0.24 0.16 0.33 0.24 0.49 0.089 0.24 0.10 0.28 0.11 0.064 0.18 0.089 0.064 0.033 0.089 0.045 0.18 0.089 0.33 0.16 0.089 0.045 0.16 0.056 0.33 0.16 0.49 0.24 0.16 0.056 0.24 0.091 0.048 0.091 0.18 0.24 0.091 0.10 0.24 0.28 0.18 0.24 0.31 0.49 0.048 0.18 0.091 0.24 0.18 0.31 0.24 0.49 0.091 0.24 0.10 0.28 0.10 0.088 0.28 0.24 0.088 0.060 0.24 0.16 0.24 0.16 0.49 0.33 0.10 0.28 0.088 0.24 0.088 0.24 0.060 0.16 0.24 0.49 0.16 0.33 0.10 0.092 0.28 0.24 0.092 0.050 0.24 0.18 0.24 0.18 0.49 0.31 0.31 0.19 0.49 0.25 0.19 0.060 0.25 0.092 0.25 0.092 0.29 0.11 0.29 0.11 0.25 0.092 0.50 0.25 0.31 0.19 0.25 0.092 0.19 0.060 0.49 0.31 0.24 0.18 0.28 0.24 0.10 0.092 0.24 0.18 0.092 0.051 0.10 0.28 0.092 0.24 0.092 0.24 0.050 0.18 0.24 0.49 0.18 0.31 0.31 0.49 0.19 0.25 0.19 0.25 0.060 0.092 0.25 0.29 0.092 0.11 0.28 0.10 0.24 0.092 0.49 0.24 0.31 0.18 0.24 0.092 0.18 0.051 0.50 0.31 0.25 0.19 0.29 0.25 0.11 0.092 0.25 0.19 0.092 0.060 0.056 0.091 0.029 0.024 0.091 0.10 0.024 0.027 0.029 0.024 0.0016 0.0033 0.024 0.027 0.0033 0.0050 0.056 0.029 0.091 0.024 0.029 0.0016 0.024 0.0033 0.091 0.024 0.10 0.027 0.024 0.0033 0.027 0.0050 0.10 0.092 0.027 0.024 0.092 0.051 0.024 0.025 0.027 0.024 0.0050 0.0024 0.024 0.025 0.0024 0.00012 0.10 0.027 0.092 0.024 0.027 0.0050 0.024 0.0024 0.092 0.024 0.051 0.025 0.024 0.0024 0.025 0.00012 0.027 0.036 0.061 0.089 0.036 0.061 0.089 0.16 0.061 0.089 0.11 0.17 0.089 0.16 0.17 0.33 0.027 0.061 0.036 0.089 0.061 0.11 0.089 0.17 0.036 0.089 0.061 0.16 0.089 0.17 0.16 0.33 0.060 0.036 0.16 0.089 0.036 0.027 0.089 0.061 0.16 0.089 0.33 0.17 0.089 0.061 0.17 0.11 0.060 0.16 0.036 0.089 0.16 0.33 0.089 0.17 0.036 0.089 0.027 0.061 0.089 0.17 0.061 0.11 0.75 0.84 0.84 0.93 0.84 0.87 0.93 0.97 0.84 0.93 0.87 0.97 0.93 0.97 0.97 1.0 0.75 0.84 0.84 0.93 0.84 0.87 0.93 0.97 0.84 0.93 0.87 0.97 0.93 0.97 0.97 1.0 0.87 0.97 0.84 0.93 0.97 1.0 0.93 0.97 0.84 0.93 0.76 0.84 0.93 0.97 0.84 0.87 0.87 0.84 0.97 0.93 0.84 0.76 0.93 0.84 0.97 0.93 1.0 0.97 0.93 0.84 0.97 0.87 1.0 0.97 0.97 0.93 0.97 0.87 0.93 0.84 0.97 0.93 0.87 0.84 0.93 0.84 0.84 0.76 0.75 0.84 0.84 0.93 0.84 0.87 0.93 0.97 0.84 0.93 0.87 0.97 0.93 0.97 0.97 1.0 0.87 0.84 0.97 0.93 0.84 0.75 0.93 0.84 0.97 0.93 1.0 0.97 0.93 0.84 0.97 0.87 0.87 0.97 0.84 0.93 0.97 1.0 0.93 0.97 0.84 0.93 0.75 0.84 0.93 0.97 0.84 0.87 0.87 0.84 0.97 0.93 0.84 0.75 0.93 0.84 0.97 0.93 1.0 0.97 0.93 0.84 0.97 0.87 0.75 0.63 0.84 0.70 0.63 0.49 0.70 0.55 0.84 0.70 0.87 0.73 0.70 0.55 0.73 0.57 1.0 0.97 0.97 0.93 0.97 0.87 0.93 0.84 0.97 0.93 0.87 0.84 0.93 0.84 0.84 0.76 0.87 0.73 0.84 0.70 0.73 0.57 0.70 0.55 0.84 0.70 0.76 0.63 0.70 0.55 0.63 0.50 0.87 0.84 0.73 0.70 0.84 0.76 0.70 0.63 0.73 0.70 0.57 0.55 0.70 0.63 0.55 0.49 0.87 0.97 0.84 0.93 0.97 1.0 0.93 0.97 0.84 0.93 0.75 0.84 0.93 0.97 0.84 0.87 0.75 0.84 0.63 0.70 0.84 0.87 0.70 0.73 0.63 0.70 0.49 0.55 0.70 0.73 0.55 0.57 1.0 0.97 0.97 0.93 0.97 0.87 0.93 0.84 0.97 0.93 0.87 0.84 0.93 0.84 0.84 0.76 0.87 0.73 0.84 0.70 0.73 0.57 0.70 0.55 0.84 0.70 0.76 0.63 0.70 0.55 0.63 0.49 0.87 0.84 0.73 0.70 0.84 0.76 0.70 0.63 0.73 0.70 0.57 0.55 0.70 0.63 0.55 0.50 0.33 0.41 0.41 0.53 0.41 0.49 0.53 0.63 0.41 0.53 0.50 0.63 0.53 0.63 0.63 0.75 0.49 0.55 0.63 0.70 0.55 0.57 0.70 0.73 0.63 0.70 0.75 0.84 0.70 0.73 0.84 0.87 0.50 0.63 0.56 0.71 0.63 0.75 0.71 0.84 0.56 0.71 0.58 0.73 0.71 0.84 0.73 0.87 0.58 0.73 0.56 0.71 0.73 0.87 0.71 0.84 0.56 0.71 0.50 0.63 0.71 0.84 0.63 0.76 0.50 0.63 0.41 0.53 0.63 0.76 0.53 0.63 0.41 0.53 0.33 0.41 0.53 0.63 0.41 0.49 0.76 0.84 0.63 0.70 0.84 0.87 0.70 0.73 0.63 0.70 0.49 0.55 0.70 0.73 0.55 0.57 0.33 0.41 0.41 0.53 0.41 0.50 0.53 0.63 0.41 0.53 0.49 0.63 0.53 0.63 0.63 0.75 0.50 0.56 0.63 0.71 0.56 0.58 0.71 0.73 0.63 0.71 0.75 0.84 0.71 0.73 0.84 0.87 0.49 0.63 0.55 0.70 0.63 0.75 0.70 0.84 0.55 0.70 0.57 0.73 0.70 0.84 0.73 0.87 0.58 0.56 0.73 0.71 0.56 0.50 0.71 0.63 0.73 0.71 0.87 0.84 0.71 0.63 0.84 0.76 0.50 0.41 0.63 0.53 0.41 0.33 0.53 0.41 0.63 0.53 0.76 0.63 0.53 0.41 0.63 0.49 0.76 0.63 0.84 0.70 0.63 0.49 0.70 0.55 0.84 0.70 0.87 0.73 0.70 0.55 0.73 0.57 0.87 0.73 0.84 0.71 0.73 0.58 0.71 0.56 0.84 0.71 0.76 0.63 0.71 0.56 0.63 0.50 0.87 0.84 0.73 0.71 0.84 0.76 0.71 0.63 0.73 0.71 0.58 0.56 0.71 0.63 0.56 0.50 0.76 0.63 0.63 0.53 0.63 0.50 0.53 0.41 0.63 0.53 0.50 0.41 0.53 0.41 0.41 0.33 0.58 0.43 0.56 0.42 0.43 0.31 0.42 0.30 0.56 0.42 0.50 0.38 0.42 0.30 0.38 0.27 0.31 0.24 0.30 0.23 0.24 0.21 0.23 0.20 0.30 0.23 0.27 0.20 0.23 0.20 0.20 0.18 0.27 0.20 0.22 0.17 0.20 0.18 0.17 0.15 0.22 0.17 0.18 0.15 0.17 0.15 0.15 0.11 0.58 0.56 0.43 0.42 0.56 0.50 0.42 0.38 0.43 0.42 0.31 0.30 0.42 0.38 0.30 0.27 0.31 0.30 0.24 0.23 0.30 0.27 0.23 0.20 0.24 0.23 0.21 0.20 0.23 0.20 0.20 0.18 0.27 0.22 0.20 0.17 0.22 0.18 0.17 0.15 0.20 0.17 0.18 0.15 0.17 0.15 0.15 0.11 0.11 0.14 0.15 0.17 0.14 0.17 0.17 0.22 0.15 0.17 0.18 0.20 0.17 0.22 0.20 0.27 0.18 0.20 0.20 0.23 0.20 0.27 0.23 0.30 0.20 0.23 0.21 0.24 0.23 0.30 0.24 0.31 0.27 0.38 0.30 0.42 0.38 0.50 0.42 0.56 0.30 0.42 0.31 0.43 0.42 0.56 0.43 0.58 0.21 0.24 0.20 0.23 0.24 0.31 0.23 0.30 0.20 0.23 0.18 0.20 0.23 0.30 0.20 0.27 0.31 0.43 0.30 0.42 0.43 0.58 0.42 0.56 0.30 0.42 0.27 0.38 0.42 0.56 0.38 0.50 0.18 0.20 0.15 0.17 0.20 0.27 0.17 0.22 0.15 0.17 0.11 0.14 0.17 0.22 0.14 0.18 0.11 0.15 0.14 0.17 0.15 0.18 0.17 0.20 0.14 0.17 0.17 0.22 0.17 0.20 0.22 0.27 0.18 0.20 0.20 0.23 0.20 0.21 0.23 0.24 0.20 0.23 0.27 0.30 0.23 0.24 0.30 0.31 0.27 0.30 0.38 0.42 0.30 0.31 0.42 0.43 0.38 0.42 0.50 0.56 0.42 0.43 0.56 0.58 0.21 0.20 0.24 0.23 0.20 0.18 0.23 0.20 0.24 0.23 0.31 0.30 0.23 0.20 0.30 0.27 0.18 0.15 0.20 0.17 0.15 0.11 0.17 0.14 0.20 0.17 0.27 0.22 0.17 0.14 0.22 0.18 0.31 0.30 0.43 0.42 0.30 0.27 0.42 0.38 0.43 0.42 0.58 0.56 0.42 0.38 0.56 0.50 0.31 0.40 0.40 0.52 0.40 0.49 0.52 0.63 0.40 0.52 0.49 0.63 0.52 0.63 0.63 0.75 0.49 0.55 0.63 0.70 0.55 0.57 0.70 0.73 0.63 0.70 0.75 0.84 0.70 0.73 0.84 0.87 0.49 0.63 0.55 0.70 0.63 0.75 0.70 0.84 0.55 0.70 0.57 0.73 0.70 0.84 0.73 0.87 0.57 0.55 0.73 0.70 0.55 0.49 0.70 0.63 0.73 0.70 0.87 0.84 0.70 0.63 0.84 0.75 0.49 0.41 0.63 0.53 0.41 0.33 0.53 0.41 0.63 0.53 0.75 0.63 0.53 0.41 0.63 0.50 0.75 0.63 0.84 0.71 0.63 0.50 0.71 0.56 0.84 0.71 0.87 0.73 0.71 0.56 0.73 0.58 0.17 0.14 0.22 0.17 0.14 0.11 0.17 0.15 0.22 0.17 0.27 0.20 0.17 0.15 0.20 0.18 0.50 0.38 0.56 0.42 0.38 0.27 0.42 0.30 0.56 0.42 0.58 0.43 0.42 0.30 0.43 0.31 0.27 0.20 0.30 0.23 0.20 0.18 0.23 0.20 0.30 0.23 0.31 0.24 0.23 0.20 0.24 0.21 0.57 0.73 0.55 0.70 0.73 0.87 0.70 0.84 0.55 0.70 0.49 0.63 0.70 0.84 0.63 0.75 0.49 0.63 0.41 0.53 0.63 0.75 0.53 0.63 0.41 0.53 0.33 0.41 0.53 0.63 0.41 0.50 0.75 0.84 0.63 0.71 0.84 0.87 0.71 0.73 0.63 0.71 0.50 0.56 0.71 0.73 0.56 0.58 0.50 0.56 0.38 0.42 0.56 0.58 0.42 0.43 0.38 0.42 0.27 0.30 0.42 0.43 0.30 0.31 0.17 0.22 0.14 0.17 0.22 0.27 0.17 0.20 0.14 0.17 0.11 0.15 0.17 0.20 0.15 0.18 0.27 0.30 0.20 0.23 0.30 0.31 0.23 0.24 0.20 0.23 0.18 0.20 0.23 0.24 0.20 0.21 0.57 0.55 0.73 0.70 0.55 0.49 0.70 0.63 0.73 0.70 0.87 0.84 0.70 0.63 0.84 0.75 0.49 0.40 0.63 0.52 0.40 0.31 0.52 0.40 0.63 0.52 0.75 0.63 0.52 0.40 0.63 0.49 0.57 0.73 0.55 0.70 0.73 0.87 0.70 0.84 0.55 0.70 0.49 0.63 0.70 0.84 0.63 0.75 0.49 0.63 0.40 0.52 0.63 0.75 0.52 0.63 0.40 0.52 0.31 0.40 0.52 0.63 0.40 0.49 0.24 0.26 0.37 0.40 0.26 0.28 0.40 0.41 0.37 0.40 0.49 0.55 0.40 0.41 0.55 0.57 0.49 0.55 0.37 0.40 0.55 0.57 0.40 0.41 0.37 0.40 0.24 0.28 0.40 0.41 0.28 0.28 0.24 0.28 0.17 0.17 0.28 0.28 0.17 0.19 0.17 0.17 0.091 0.097 0.17 0.19 0.097 0.10 0.24 0.37 0.26 0.40 0.37 0.49 0.40 0.55 0.26 0.40 0.28 0.41 0.40 0.55 0.41 0.57 0.49 0.37 0.55 0.40 0.37 0.24 0.40 0.28 0.55 0.40 0.57 0.41 0.40 0.28 0.41 0.28 0.24 0.17 0.28 0.17 0.17 0.091 0.17 0.097 0.28 0.17 0.28 0.19 0.17 0.097 0.19 0.10 0.24 0.26 0.37 0.40 0.26 0.28 0.40 0.41 0.37 0.40 0.49 0.55 0.40 0.41 0.55 0.57 0.24 0.37 0.26 0.40 0.37 0.49 0.40 0.55 0.26 0.40 0.28 0.41 0.40 0.55 0.41 0.57 0.28 0.26 0.41 0.40 0.26 0.24 0.40 0.37 0.41 0.40 0.57 0.55 0.40 0.37 0.55 0.49 0.28 0.41 0.26 0.40 0.41 0.57 0.40 0.55 0.26 0.40 0.24 0.37 0.40 0.55 0.37 0.49 0.28 0.26 0.41 0.40 0.26 0.24 0.40 0.37 0.41 0.40 0.57 0.55 0.40 0.37 0.55 0.49 0.49 0.37 0.55 0.40 0.37 0.25 0.40 0.27 0.55 0.40 0.57 0.41 0.40 0.27 0.41 0.29 0.57 0.41 0.55 0.40 0.41 0.29 0.40 0.27 0.55 0.40 0.50 0.37 0.40 0.27 0.37 0.25 0.57 0.55 0.41 0.40 0.55 0.49 0.40 0.37 0.41 0.40 0.28 0.26 0.40 0.37 0.26 0.24 0.28 0.41 0.26 0.40 0.41 0.57 0.40 0.55 0.26 0.40 0.24 0.37 0.40 0.55 0.37 0.49 0.49 0.55 0.37 0.40 0.55 0.57 0.40 0.41 0.37 0.40 0.25 0.27 0.40 0.41 0.27 0.29 0.57 0.41 0.55 0.40 0.41 0.28 0.40 0.26 0.55 0.40 0.49 0.37 0.40 0.26 0.37 0.24 0.57 0.55 0.41 0.40 0.55 0.50 0.40 0.37 0.41 0.40 0.29 0.27 0.40 0.37 0.27 0.25 - -endvars -endgmv DEAL:: cycle cells dofs L2 H1 Linfty 0 4 9 1.198e+00 2.732e+00 1.383e+00 @@ -1015,37 +70,37 @@ DEAL:: DEAL::Solving with Q1 elements, global refinement DEAL::=========================================== DEAL:: -DEAL:cg::Starting value 2.639e+00 +DEAL:cg::Starting value 2.6 DEAL:cg::Convergence step 4 value 0 DEAL::Cycle 0: DEAL:: Number of active cells: 4 DEAL:: Number of degrees of freedom: 9 -DEAL:cg::Starting value 4.952e+00 +DEAL:cg::Starting value 5.0 DEAL:cg::Convergence step 11 value 0 DEAL::Cycle 1: DEAL:: Number of active cells: 16 DEAL:: Number of degrees of freedom: 25 -DEAL:cg::Starting value 3.735e+00 +DEAL:cg::Starting value 3.7 DEAL:cg::Convergence step 16 value 0 DEAL::Cycle 2: DEAL:: Number of active cells: 64 DEAL:: Number of degrees of freedom: 81 -DEAL:cg::Starting value 2.272e+00 +DEAL:cg::Starting value 2.3 DEAL:cg::Convergence step 25 value 0 DEAL::Cycle 3: DEAL:: Number of active cells: 256 DEAL:: Number of degrees of freedom: 289 -DEAL:cg::Starting value 1.252e+00 +DEAL:cg::Starting value 1.3 DEAL:cg::Convergence step 44 value 0 DEAL::Cycle 4: DEAL:: Number of active cells: 1024 DEAL:: Number of degrees of freedom: 1089 -DEAL:cg::Starting value 8.170e-01 +DEAL:cg::Starting value 0.82 DEAL:cg::Convergence step 83 value 0 DEAL::Cycle 5: DEAL:: Number of active cells: 4096 DEAL:: Number of degrees of freedom: 4225 -DEAL:cg::Starting value 8.308e-01 +DEAL:cg::Starting value 0.83 DEAL:cg::Convergence step 156 value 0 DEAL::Cycle 6: DEAL:: Number of active cells: 16384 @@ -1115,37 +170,37 @@ DEAL:: DEAL::Solving with Q2 elements, global refinement DEAL::=========================================== DEAL:: -DEAL:cg::Starting value 11.37 +DEAL:cg::Starting value 11. DEAL:cg::Convergence step 12 value 0 DEAL::Cycle 0: DEAL:: Number of active cells: 4 DEAL:: Number of degrees of freedom: 25 -DEAL:cg::Starting value 3.77 +DEAL:cg::Starting value 3.8 DEAL:cg::Convergence step 19 value 0 DEAL::Cycle 1: DEAL:: Number of active cells: 16 DEAL:: Number of degrees of freedom: 81 -DEAL:cg::Starting value 2.59 +DEAL:cg::Starting value 2.6 DEAL:cg::Convergence step 34 value 0 DEAL::Cycle 2: DEAL:: Number of active cells: 64 DEAL:: Number of degrees of freedom: 289 -DEAL:cg::Starting value 1.42 +DEAL:cg::Starting value 1.4 DEAL:cg::Convergence step 64 value 0 DEAL::Cycle 3: DEAL:: Number of active cells: 256 DEAL:: Number of degrees of freedom: 1089 -DEAL:cg::Starting value 1.01 +DEAL:cg::Starting value 1.0 DEAL:cg::Convergence step 125 value 0 DEAL::Cycle 4: DEAL:: Number of active cells: 1024 DEAL:: Number of degrees of freedom: 4225 -DEAL:cg::Starting value 1.14 +DEAL:cg::Starting value 1.1 DEAL:cg::Convergence step 247 value 0 DEAL::Cycle 5: DEAL:: Number of active cells: 4096 DEAL:: Number of degrees of freedom: 16641 -DEAL:cg::Starting value 1.55 +DEAL:cg::Starting value 1.6 DEAL:cg::Convergence step 485 value 0 DEAL::Cycle 6: DEAL:: Number of active cells: 16384 diff --git a/tests/hp/step-8.cc b/tests/hp/step-8.cc index 27ccae5ae8..2a94fba713 100644 --- a/tests/hp/step-8.cc +++ b/tests/hp/step-8.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2005, 2006 by the deal.II authors +// Copyright (C) 2005, 2006, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -427,6 +427,7 @@ void ElasticProblem::run () int main () { logfile.precision(2); + deallog << std::setprecision(2); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/step-9.cc b/tests/hp/step-9.cc index 5f82be11c0..c562d99dbf 100644 --- a/tests/hp/step-9.cc +++ b/tests/hp/step-9.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2005, 2006, 2007 by the deal.II authors +// Copyright (C) 2005, 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -714,6 +714,7 @@ GradientEstimation::estimate_interval (const hp::DoFHandler &dof_handler, int main () { logfile.precision(2); + deallog << std::setprecision(2); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/hp/vectors_point_source_01.cc b/tests/hp/vectors_point_source_01.cc index 3db0002957..90ab6063d5 100644 --- a/tests/hp/vectors_point_source_01.cc +++ b/tests/hp/vectors_point_source_01.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2000, 2001, 2003, 2004, 2006, 2007 by the deal.II authors +// Copyright (C) 2000, 2001, 2003, 2004, 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -93,6 +93,7 @@ int main () std::ofstream logfile ("vectors_point_source_01/output"); logfile.precision (4); logfile.setf(std::ios::fixed); + deallog << std::setprecision(4) << std::fixed; deallog.attach(logfile); deallog.depth_console (0); diff --git a/tests/hp/vectors_point_source_hp_01.cc b/tests/hp/vectors_point_source_hp_01.cc index 5acd133e4f..e99f6817e1 100644 --- a/tests/hp/vectors_point_source_hp_01.cc +++ b/tests/hp/vectors_point_source_hp_01.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2000, 2001, 2003, 2004, 2006, 2007 by the deal.II authors +// Copyright (C) 2000, 2001, 2003, 2004, 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -91,6 +91,7 @@ int main () std::ofstream logfile ("vectors_point_source_hp_01/output"); logfile.precision (4); logfile.setf(std::ios::fixed); + deallog << std::setprecision(4) << std::fixed; deallog.attach(logfile); deallog.depth_console (0); diff --git a/tests/hp/vectors_rhs_01.cc b/tests/hp/vectors_rhs_01.cc index 3c0666099a..fc8b7340a7 100644 --- a/tests/hp/vectors_rhs_01.cc +++ b/tests/hp/vectors_rhs_01.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2000, 2001, 2003, 2004, 2006, 2007 by the deal.II authors +// Copyright (C) 2000, 2001, 2003, 2004, 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -112,6 +112,7 @@ int main () std::ofstream logfile ("vectors_rhs_01/output"); logfile.precision (4); logfile.setf(std::ios::fixed); + deallog << std::setprecision(4) << std::fixed; deallog.attach(logfile); deallog.depth_console (0); diff --git a/tests/hp/vectors_rhs_02.cc b/tests/hp/vectors_rhs_02.cc index 3e901a8d7b..406ece3eb5 100644 --- a/tests/hp/vectors_rhs_02.cc +++ b/tests/hp/vectors_rhs_02.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2000, 2001, 2003, 2004, 2006, 2007 by the deal.II authors +// Copyright (C) 2000, 2001, 2003, 2004, 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -113,6 +113,7 @@ int main () std::ofstream logfile ("vectors_rhs_02/output"); logfile.precision (4); logfile.setf(std::ios::fixed); + deallog << std::setprecision(4) << std::fixed; deallog.attach(logfile); deallog.depth_console (0); diff --git a/tests/hp/vectors_rhs_03.cc b/tests/hp/vectors_rhs_03.cc index 9619f52fbc..b0d70350fa 100644 --- a/tests/hp/vectors_rhs_03.cc +++ b/tests/hp/vectors_rhs_03.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2000, 2001, 2003, 2004, 2006, 2007 by the deal.II authors +// Copyright (C) 2000, 2001, 2003, 2004, 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -110,6 +110,7 @@ int main () std::ofstream logfile ("vectors_rhs_03/output"); logfile.precision (4); logfile.setf(std::ios::fixed); + deallog << std::setprecision(4) << std::fixed; deallog.attach(logfile); deallog.depth_console (0); diff --git a/tests/hp/vectors_rhs_hp_01.cc b/tests/hp/vectors_rhs_hp_01.cc index fcefb8d164..b03d5f7f98 100644 --- a/tests/hp/vectors_rhs_hp_01.cc +++ b/tests/hp/vectors_rhs_hp_01.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2000, 2001, 2003, 2004, 2006, 2007 by the deal.II authors +// Copyright (C) 2000, 2001, 2003, 2004, 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -115,6 +115,7 @@ int main () std::ofstream logfile ("vectors_rhs_hp_01/output"); logfile.precision (4); logfile.setf(std::ios::fixed); + deallog << std::setprecision(4) << std::fixed; deallog.attach(logfile); deallog.depth_console (0); diff --git a/tests/hp/vectors_rhs_hp_03.cc b/tests/hp/vectors_rhs_hp_03.cc index 51c24c01ca..7e34cecfa5 100644 --- a/tests/hp/vectors_rhs_hp_03.cc +++ b/tests/hp/vectors_rhs_hp_03.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2000, 2001, 2003, 2004, 2006, 2007 by the deal.II authors +// Copyright (C) 2000, 2001, 2003, 2004, 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -113,6 +113,7 @@ int main () std::ofstream logfile ("vectors_rhs_hp_03/output"); logfile.precision (4); logfile.setf(std::ios::fixed); + deallog << std::setprecision(4) << std::fixed; deallog.attach(logfile); deallog.depth_console (0);