-- cgit v1.2.3 -- cgit v1.2.3 From a424f92e94783648422edbd639da19d92a94cf90 Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Tue, 31 Jan 2017 21:35:37 +0000 Subject: Rename Rips and Alpha concept file names GUDHI version 2.0.0 git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/gudhi_doc_2.0.0@2038 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: be93fae5a69b15de05bfabe75a2d84ef606b589f --- CMakeGUDHIVersion.txt | 6 +- .../concept/SimplicialComplexForAlpha.h | 89 ++++++++++++++++++++++ .../concept/Simplicial_complex_for_alpha.h | 89 ---------------------- .../concept/SimplicialComplexForRips.h | 54 +++++++++++++ .../concept/Simplicial_complex_for_rips.h | 54 ------------- src/common/doc/main_page.h | 6 +- 6 files changed, 149 insertions(+), 149 deletions(-) create mode 100644 src/Alpha_complex/concept/SimplicialComplexForAlpha.h delete mode 100644 src/Alpha_complex/concept/Simplicial_complex_for_alpha.h create mode 100644 src/Rips_complex/concept/SimplicialComplexForRips.h delete mode 100644 src/Rips_complex/concept/Simplicial_complex_for_rips.h diff --git a/CMakeGUDHIVersion.txt b/CMakeGUDHIVersion.txt index a00ae1b2..bd0c57ac 100644 --- a/CMakeGUDHIVersion.txt +++ b/CMakeGUDHIVersion.txt @@ -1,6 +1,6 @@ -set (GUDHI_MAJOR_VERSION 1) -set (GUDHI_MINOR_VERSION 3) -set (GUDHI_PATCH_VERSION 1) +set (GUDHI_MAJOR_VERSION 2) +set (GUDHI_MINOR_VERSION 0) +set (GUDHI_PATCH_VERSION 0) set(GUDHI_VERSION ${GUDHI_MAJOR_VERSION}.${GUDHI_MINOR_VERSION}.${GUDHI_PATCH_VERSION}) message(STATUS "GUDHI version : ${GUDHI_VERSION}") diff --git a/src/Alpha_complex/concept/SimplicialComplexForAlpha.h b/src/Alpha_complex/concept/SimplicialComplexForAlpha.h new file mode 100644 index 00000000..2b8bff94 --- /dev/null +++ b/src/Alpha_complex/concept/SimplicialComplexForAlpha.h @@ -0,0 +1,89 @@ +/* This file is part of the Gudhi Library. The Gudhi library + * (Geometric Understanding in Higher Dimensions) is a generic C++ + * library for computational topology. + * + * Author(s): Vincent Rouvreau + * + * Copyright (C) 2016 INRIA + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef CONCEPT_ALPHA_COMPLEX_SIMPLICIAL_COMPLEX_FOR_ALPHA_H_ +#define CONCEPT_ALPHA_COMPLEX_SIMPLICIAL_COMPLEX_FOR_ALPHA_H_ + +namespace Gudhi { + +namespace alpha_complex { + +/** \brief The concept SimplicialComplexForAlpha describes the requirements for a type to implement a simplicial + * complex, that can be created from a `Alpha_complex`. + */ +struct SimplicialComplexForAlpha { + /** Handle to specify a simplex. */ + typedef unspecified Simplex_handle; + /** Handle to specify a vertex. Must be a non-negative integer. */ + typedef unspecified Vertex_handle; + /** Handle to specify the simplex filtration value. */ + typedef unspecified Filtration_value; + + /** Returns the number of vertices in the simplicial complex. */ + std::size_t num_vertices(); + + /** Sets the simplicial complex dimension. */ + void set_dimension(int dimension); + + /** Gets the 'simplex' dimension. */ + int dimension(Simplex_handle simplex); + + /** Assigns the 'simplex' with the given 'filtration' value. */ + int assign_filtration(Simplex_handle simplex, Filtration_value filtration); + + /** \brief Inserts a simplex with vertices from a given simplex (represented by a vector of Vertex_handle) in the + * simplicial complex with the given 'filtration' value. */ + void insert_simplex_and_subfaces(std::vector const & vertex_range, Filtration_value filtration); + + /** Browses the simplicial complex to make the filtration non-decreasing. */ + void make_filtration_non_decreasing(); + + /** Prune the simplicial complex above 'filtration' value given as parameter. */ + void prune_above_filtration(Filtration_value filtration); + + /** \brief Iterator over vertices of a simplex. + * + * 'value type' must be 'Vertex_handle'.*/ + typedef unspecified Simplex_vertex_range; + + /** \brief Returns a range over vertices of a given + * simplex. */ + Simplex_vertex_range simplex_vertex_range(Simplex_handle const & simplex); + + /** \brief Iterator over the boundaries of the complex, in an arbitrary order. + * + * 'value_type' must be 'Simplex_handle'.*/ + typedef unspecified Boundary_simplex_range; + + /** \brief Returns a range over boundaries of a given simplex. */ + Boundary_simplex_range boundary_simplex_range(Simplex_handle const & simplex); + + /** \brief Return type of an insertion of a simplex + */ + typedef unspecified Insertion_result_type; +}; + +} // namespace alpha_complex + +} // namespace Gudhi + +#endif // CONCEPT_ALPHA_COMPLEX_SIMPLICIAL_COMPLEX_FOR_ALPHA_H_ diff --git a/src/Alpha_complex/concept/Simplicial_complex_for_alpha.h b/src/Alpha_complex/concept/Simplicial_complex_for_alpha.h deleted file mode 100644 index 2b8bff94..00000000 --- a/src/Alpha_complex/concept/Simplicial_complex_for_alpha.h +++ /dev/null @@ -1,89 +0,0 @@ -/* This file is part of the Gudhi Library. The Gudhi library - * (Geometric Understanding in Higher Dimensions) is a generic C++ - * library for computational topology. - * - * Author(s): Vincent Rouvreau - * - * Copyright (C) 2016 INRIA - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -#ifndef CONCEPT_ALPHA_COMPLEX_SIMPLICIAL_COMPLEX_FOR_ALPHA_H_ -#define CONCEPT_ALPHA_COMPLEX_SIMPLICIAL_COMPLEX_FOR_ALPHA_H_ - -namespace Gudhi { - -namespace alpha_complex { - -/** \brief The concept SimplicialComplexForAlpha describes the requirements for a type to implement a simplicial - * complex, that can be created from a `Alpha_complex`. - */ -struct SimplicialComplexForAlpha { - /** Handle to specify a simplex. */ - typedef unspecified Simplex_handle; - /** Handle to specify a vertex. Must be a non-negative integer. */ - typedef unspecified Vertex_handle; - /** Handle to specify the simplex filtration value. */ - typedef unspecified Filtration_value; - - /** Returns the number of vertices in the simplicial complex. */ - std::size_t num_vertices(); - - /** Sets the simplicial complex dimension. */ - void set_dimension(int dimension); - - /** Gets the 'simplex' dimension. */ - int dimension(Simplex_handle simplex); - - /** Assigns the 'simplex' with the given 'filtration' value. */ - int assign_filtration(Simplex_handle simplex, Filtration_value filtration); - - /** \brief Inserts a simplex with vertices from a given simplex (represented by a vector of Vertex_handle) in the - * simplicial complex with the given 'filtration' value. */ - void insert_simplex_and_subfaces(std::vector const & vertex_range, Filtration_value filtration); - - /** Browses the simplicial complex to make the filtration non-decreasing. */ - void make_filtration_non_decreasing(); - - /** Prune the simplicial complex above 'filtration' value given as parameter. */ - void prune_above_filtration(Filtration_value filtration); - - /** \brief Iterator over vertices of a simplex. - * - * 'value type' must be 'Vertex_handle'.*/ - typedef unspecified Simplex_vertex_range; - - /** \brief Returns a range over vertices of a given - * simplex. */ - Simplex_vertex_range simplex_vertex_range(Simplex_handle const & simplex); - - /** \brief Iterator over the boundaries of the complex, in an arbitrary order. - * - * 'value_type' must be 'Simplex_handle'.*/ - typedef unspecified Boundary_simplex_range; - - /** \brief Returns a range over boundaries of a given simplex. */ - Boundary_simplex_range boundary_simplex_range(Simplex_handle const & simplex); - - /** \brief Return type of an insertion of a simplex - */ - typedef unspecified Insertion_result_type; -}; - -} // namespace alpha_complex - -} // namespace Gudhi - -#endif // CONCEPT_ALPHA_COMPLEX_SIMPLICIAL_COMPLEX_FOR_ALPHA_H_ diff --git a/src/Rips_complex/concept/SimplicialComplexForRips.h b/src/Rips_complex/concept/SimplicialComplexForRips.h new file mode 100644 index 00000000..7dab0615 --- /dev/null +++ b/src/Rips_complex/concept/SimplicialComplexForRips.h @@ -0,0 +1,54 @@ +/* This file is part of the Gudhi Library. The Gudhi library + * (Geometric Understanding in Higher Dimensions) is a generic C++ + * library for computational topology. + * + * Author(s): Vincent Rouvreau + * + * Copyright (C) 2016 INRIA + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef CONCEPT_RIPS_COMPLEX_SIMPLICIAL_COMPLEX_FOR_RIPS_H_ +#define CONCEPT_RIPS_COMPLEX_SIMPLICIAL_COMPLEX_FOR_RIPS_H_ + +namespace Gudhi { + +namespace rips_complex { + +/** \brief The concept SimplicialComplexForRips describes the requirements for a type to implement a simplicial + * complex, that can be created from a `Rips_complex`. The only available model for the moment is the `Simplex_tree`. + */ +struct SimplicialComplexForRips { + /** \brief Type used to store the filtration values of the simplicial complex. */ + typedef unspecified Filtration_value; + + /** \brief Inserts a given `Gudhi::rips_complex::Rips_complex::OneSkeletonGraph` in the simplicial complex. */ + template + void insert_graph(const OneSkeletonGraph& skel_graph); + + /** \brief Expands the simplicial complex containing only its one skeleton until a given maximal dimension as + * explained in \ref ripsdefinition. */ + void expansion(int max_dim); + + /** \brief Returns the number of vertices in the simplicial complex. */ + std::size_t num_vertices(); + +}; + +} // namespace rips_complex + +} // namespace Gudhi + +#endif // CONCEPT_RIPS_COMPLEX_SIMPLICIAL_COMPLEX_FOR_RIPS_H_ diff --git a/src/Rips_complex/concept/Simplicial_complex_for_rips.h b/src/Rips_complex/concept/Simplicial_complex_for_rips.h deleted file mode 100644 index 7dab0615..00000000 --- a/src/Rips_complex/concept/Simplicial_complex_for_rips.h +++ /dev/null @@ -1,54 +0,0 @@ -/* This file is part of the Gudhi Library. The Gudhi library - * (Geometric Understanding in Higher Dimensions) is a generic C++ - * library for computational topology. - * - * Author(s): Vincent Rouvreau - * - * Copyright (C) 2016 INRIA - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -#ifndef CONCEPT_RIPS_COMPLEX_SIMPLICIAL_COMPLEX_FOR_RIPS_H_ -#define CONCEPT_RIPS_COMPLEX_SIMPLICIAL_COMPLEX_FOR_RIPS_H_ - -namespace Gudhi { - -namespace rips_complex { - -/** \brief The concept SimplicialComplexForRips describes the requirements for a type to implement a simplicial - * complex, that can be created from a `Rips_complex`. The only available model for the moment is the `Simplex_tree`. - */ -struct SimplicialComplexForRips { - /** \brief Type used to store the filtration values of the simplicial complex. */ - typedef unspecified Filtration_value; - - /** \brief Inserts a given `Gudhi::rips_complex::Rips_complex::OneSkeletonGraph` in the simplicial complex. */ - template - void insert_graph(const OneSkeletonGraph& skel_graph); - - /** \brief Expands the simplicial complex containing only its one skeleton until a given maximal dimension as - * explained in \ref ripsdefinition. */ - void expansion(int max_dim); - - /** \brief Returns the number of vertices in the simplicial complex. */ - std::size_t num_vertices(); - -}; - -} // namespace rips_complex - -} // namespace Gudhi - -#endif // CONCEPT_RIPS_COMPLEX_SIMPLICIAL_COMPLEX_FOR_RIPS_H_ diff --git a/src/common/doc/main_page.h b/src/common/doc/main_page.h index 60c9cd07..5e8f1dd7 100644 --- a/src/common/doc/main_page.h +++ b/src/common/doc/main_page.h @@ -62,7 +62,7 @@ Author: Clément Maria, Pawel Dlotko, Vincent Rouvreau
- Introduced in: GUDHI 1.4.0
+ Introduced in: GUDHI 2.0.0
Copyright: GPL v3
@@ -118,7 +118,7 @@ Author: Clément Jamin
- Introduced in: GUDHI 1.4.0
+ Introduced in: GUDHI 2.0.0
Copyright: GPL v3
@@ -155,7 +155,7 @@ Author: François Godi
- Introduced in: GUDHI 1.4.0
+ Introduced in: GUDHI 2.0.0
Copyright: GPL v3
Requires: \ref cgal ≥ 4.8.0 and \ref eigen3 -- cgit v1.2.3 From 9942411c664ffbae49ed1808a9c402e9b91ca9af Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Fri, 3 Feb 2017 13:58:36 +0000 Subject: GUDHI in upper case Add link to cython doc git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/gudhi_doc_2.0.0@2058 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: dd2c37fea2d1d1972e6377d4394437edaf3f4ef7 --- src/common/doc/main_page.h | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/common/doc/main_page.h b/src/common/doc/main_page.h index 5e8f1dd7..10ca60cb 100644 --- a/src/common/doc/main_page.h +++ b/src/common/doc/main_page.h @@ -3,7 +3,9 @@ * \image html "Gudhi_banner.png" "" width=20cm * * \section Introduction Introduction - * The Gudhi library (Geometry Understanding in Higher Dimensions) is a generic open source C++ library for + * The GUDHI library (Geometry Understanding in Higher Dimensions) is a generic open source + * C++ library, with a + * cython interface, for * Computational Topology and Topological Data Analysis * (TDA). * The GUDHI library intends to help the development of new algorithmic solutions in TDA and their transfer to @@ -211,11 +213,11 @@ */ -/*! \page installation Gudhi installation +/*! \page installation GUDHI installation * \tableofcontents - * As Gudhi is a header only library, there is no need to install the library. + * As GUDHI is a header only library, there is no need to install the library. * - * Examples of Gudhi headers inclusion can be found in \ref demos. + * Examples of GUDHI headers inclusion can be found in \ref demos. * * \section compiling Compiling * The library uses c++11 and requires Boost with version 1.48.0 or @@ -361,7 +363,7 @@ make \endverbatim * Please help us improving the quality of the GUDHI library. You may report bugs or suggestions to: * \verbatim Contact: gudhi-users@lists.gforge.inria.fr \endverbatim * - * Gudhi is open to external contributions. If you want to join our development team, please contact us. + * GUDHI is open to external contributions. If you want to join our development team, please contact us. * */ @@ -376,7 +378,7 @@ make \endverbatim * \verbinclude biblio/how_to_cite_gudhi.bib */ -// List of Gudhi examples - Doxygen needs at least a file tag to analyse comments +// List of GUDHI examples - Doxygen needs at least a file tag to analyse comments /*! @file Examples * @example Alpha_complex/Alpha_complex_from_off.cpp * @example Alpha_complex/Alpha_complex_from_points.cpp -- cgit v1.2.3 From 33a156082f7c4ba8ad7cc3574fa1023664d6f186 Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Fri, 3 Feb 2017 16:53:31 +0000 Subject: Modification for web site review git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/gudhi_doc_2.0.0@2059 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 6b4e7613a8cef0005ce452d6d778c604ec728090 --- src/Doxyfile | 2 +- src/common/doc/header.html | 209 ++++++++++++++++++++++++++++++++++++++++++--- src/common/doc/main_page.h | 15 +++- 3 files changed, 211 insertions(+), 15 deletions(-) diff --git a/src/Doxyfile b/src/Doxyfile index a41c6d6f..36c31515 100644 --- a/src/Doxyfile +++ b/src/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "GUDHI" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "1.3.1" +PROJECT_NUMBER = "2.0.0" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/src/common/doc/header.html b/src/common/doc/header.html index a6f3ed9c..5a155e2b 100644 --- a/src/common/doc/header.html +++ b/src/common/doc/header.html @@ -9,7 +9,7 @@ $projectname: $title $title - + @@ -25,44 +25,227 @@ $extrastylesheet - +
diff --git a/src/common/doc/main_page.h b/src/common/doc/main_page.h index 10ca60cb..214f2bb1 100644 --- a/src/common/doc/main_page.h +++ b/src/common/doc/main_page.h @@ -5,7 +5,7 @@ * \section Introduction Introduction * The GUDHI library (Geometry Understanding in Higher Dimensions) is a generic open source * C++ library, with a - * cython interface, for + * Cython interface, for * Computational Topology and Topological Data Analysis * (TDA). * The GUDHI library intends to help the development of new algorithmic solutions in TDA and their transfer to @@ -236,6 +236,15 @@ make \endverbatim * To test your build, run the following command in a terminal: * \verbatim make test \endverbatim * + * \subsection documentationgeneration Documentation + * To generate the documentation, Doxygen is required. + * Run the following command in a terminal: +\verbatim +make doxygen +# Documentation will be generated in the folder YYYY-MM-DD-hh-mm-ss_GUDHI_X.Y.Z/doc/html/ +# You can customize the directory name by calling `cmake -DUSER_VERSION_DIR=/my/custom/folder` +\endverbatim + * * \section optionallibrary Optional third-party library * \subsection gmp GMP * The multi-field persistent homology algorithm requires GMP which is a free library for arbitrary-precision @@ -251,6 +260,10 @@ make \endverbatim * \subsection cgal CGAL * The \ref alpha_complex data structure, \ref bottleneck_distance, and few examples requires CGAL, which is a C++ * library which provides easy access to efficient and reliable geometric algorithms. + * + * \note There is no need to install CGAL, you can just cmake . && make CGAL (or even + * cmake -DCGAL_HEADER_ONLY=ON . for CGAL version ≥ 4.8.0), thereafter you will be able to compile + * GUDHI by calling cmake -DCGAL_DIR=/your/path/to/CGAL-X.Y .. && make * * Having CGAL version 4.4.0 or higher installed is recommended. The procedure to install this library according to * your operating system is detailed here http://doc.cgal.org/latest/Manual/installation.html -- cgit v1.2.3 From 6a583dcf44e801aa7045ede96dee6c0f3505f625 Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Tue, 28 Feb 2017 15:04:48 +0000 Subject: csv file and not OFF git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/gudhi_doc_2.0.0@2119 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: e4cd541c47a9061019a3a04f47849e8c77df418a --- .../example/example_rips_complex_from_csv_distance_matrix_file.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Rips_complex/example/example_rips_complex_from_csv_distance_matrix_file.cpp b/src/Rips_complex/example/example_rips_complex_from_csv_distance_matrix_file.cpp index ef3a9d13..7ae8126f 100644 --- a/src/Rips_complex/example/example_rips_complex_from_csv_distance_matrix_file.cpp +++ b/src/Rips_complex/example/example_rips_complex_from_csv_distance_matrix_file.cpp @@ -1,5 +1,5 @@ #include -// to construct Rips_complex from a OFF file of points +// to construct Rips_complex from a csv file representing a distance matrix #include #include #include -- cgit v1.2.3 From f7082d14b1c30b1b5c15741aa4bc183695861d10 Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Fri, 3 Mar 2017 08:41:21 +0000 Subject: Add copyrights on dataset git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/gudhi_doc_2.0.0@2139 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 5453960e09145bcee3c6b73fd6c57e73b58c3142 --- data/meshes/min_cube3D_8.off | 16 ---------------- data/points/README | 2 -- data/points/SO3.COPYRIGHT | 2 +- data/points/bunny.COPYRIGHT | 6 ++++++ 4 files changed, 7 insertions(+), 19 deletions(-) delete mode 100644 data/meshes/min_cube3D_8.off delete mode 100644 data/points/README create mode 100644 data/points/bunny.COPYRIGHT diff --git a/data/meshes/min_cube3D_8.off b/data/meshes/min_cube3D_8.off deleted file mode 100644 index 7398eaea..00000000 --- a/data/meshes/min_cube3D_8.off +++ /dev/null @@ -1,16 +0,0 @@ -OFF -8 6 0 --0.500000 -0.500000 0.500000 - 0.500000 -0.500000 0.500000 --0.500000 0.500000 0.500000 - 0.500000 0.500000 0.500000 --0.500000 0.500000 -0.500000 - 0.500000 0.500000 -0.500000 --0.500000 -0.500000 -0.500000 - 0.500000 -0.500000 -0.500000 -4 0 1 3 2 -4 2 3 5 4 -4 4 5 7 6 -4 6 7 1 0 -4 1 7 5 3 -4 6 0 2 4 diff --git a/data/points/README b/data/points/README deleted file mode 100644 index 943bb2ec..00000000 --- a/data/points/README +++ /dev/null @@ -1,2 +0,0 @@ -The bunny pointset comes from the Stanford Computer Graphics Laboratory. -http://graphics.stanford.edu/data/3Dscanrep/ diff --git a/data/points/SO3.COPYRIGHT b/data/points/SO3.COPYRIGHT index 36618c9c..26bbb0ad 100644 --- a/data/points/SO3.COPYRIGHT +++ b/data/points/SO3.COPYRIGHT @@ -1,6 +1,6 @@ The SO3 points clouds have been generated from the ISOI software available at this webpage : -http://www.mitchell-lab.org/rots.php +https://mitchell-lab.biochem.wisc.edu/soi/index.php This software is an implementation of the two following papers: diff --git a/data/points/bunny.COPYRIGHT b/data/points/bunny.COPYRIGHT new file mode 100644 index 00000000..310ca5b5 --- /dev/null +++ b/data/points/bunny.COPYRIGHT @@ -0,0 +1,6 @@ +The bunny pointset comes from the Stanford Computer Graphics Laboratory. +http://graphics.stanford.edu/data/3Dscanrep/ + +Please acknowledge... + +Please be sure to acknowledge the source of the bunny data set. You are welcome to use the bunny data and models for research purposes. You are also welcome to mirror or redistribute them for free. Finally, you may publish images made using these models, or the images on this web site, in a scholarly article or book - as long as credit is given to the Stanford Computer Graphics Laboratory. However, such models or images are not to be used for commercial purposes, nor should they appear in a product for sale (with the exception of scholarly journals or books), without our permission. -- cgit v1.2.3 From fd510e6380ec12f3c909ccff5ee78dd7d13b8855 Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Fri, 3 Mar 2017 09:52:20 +0000 Subject: Add GPL copyrights on images directories git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/gudhi_doc_2.0.0@2142 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: d6bdcfdefb00263199b22fcc39cdb8826f8f3dbe --- src/Alpha_complex/doc/COPYRIGHT | 19 +++++++++++++++++++ src/Bitmap_cubical_complex/doc/COPYRIGHT | 19 +++++++++++++++++++ src/Bottleneck_distance/doc/COPYRIGHT | 19 +++++++++++++++++++ src/Contraction/doc/COPYRIGHT | 18 ++++++++++++++++++ src/Persistent_cohomology/doc/COPYRIGHT | 19 +++++++++++++++++++ src/Rips_complex/doc/COPYRIGHT | 19 +++++++++++++++++++ src/Simplex_tree/doc/COPYRIGHT | 19 +++++++++++++++++++ src/Skeleton_blocker/doc/COPYRIGHT | 18 ++++++++++++++++++ src/Tangential_complex/doc/COPYRIGHT | 19 +++++++++++++++++++ src/Witness_complex/doc/COPYRIGHT | 19 +++++++++++++++++++ 10 files changed, 188 insertions(+) create mode 100644 src/Alpha_complex/doc/COPYRIGHT create mode 100644 src/Bitmap_cubical_complex/doc/COPYRIGHT create mode 100644 src/Bottleneck_distance/doc/COPYRIGHT create mode 100644 src/Contraction/doc/COPYRIGHT create mode 100644 src/Persistent_cohomology/doc/COPYRIGHT create mode 100644 src/Rips_complex/doc/COPYRIGHT create mode 100644 src/Simplex_tree/doc/COPYRIGHT create mode 100644 src/Skeleton_blocker/doc/COPYRIGHT create mode 100644 src/Tangential_complex/doc/COPYRIGHT create mode 100644 src/Witness_complex/doc/COPYRIGHT diff --git a/src/Alpha_complex/doc/COPYRIGHT b/src/Alpha_complex/doc/COPYRIGHT new file mode 100644 index 00000000..dbad2380 --- /dev/null +++ b/src/Alpha_complex/doc/COPYRIGHT @@ -0,0 +1,19 @@ +The files of this directory are part of the Gudhi Library. The Gudhi library +(Geometric Understanding in Higher Dimensions) is a generic C++ library for +computational topology. + +Author(s): Vincent Rouvreau + +Copyright (C) 2015 INRIA + +This program is free software: you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free Software +Foundation, either version 3 of the License, or (at your option) any later +version. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with +this program. If not, see . diff --git a/src/Bitmap_cubical_complex/doc/COPYRIGHT b/src/Bitmap_cubical_complex/doc/COPYRIGHT new file mode 100644 index 00000000..bcd46b23 --- /dev/null +++ b/src/Bitmap_cubical_complex/doc/COPYRIGHT @@ -0,0 +1,19 @@ +The files of this directory are part of the Gudhi Library. The Gudhi library +(Geometric Understanding in Higher Dimensions) is a generic C++ library for +computational topology. + +Author(s): Pawel Dlotko + +Copyright (C) 2015 INRIA + +This program is free software: you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free Software +Foundation, either version 3 of the License, or (at your option) any later +version. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with +this program. If not, see . diff --git a/src/Bottleneck_distance/doc/COPYRIGHT b/src/Bottleneck_distance/doc/COPYRIGHT new file mode 100644 index 00000000..179740a6 --- /dev/null +++ b/src/Bottleneck_distance/doc/COPYRIGHT @@ -0,0 +1,19 @@ +The files of this directory are part of the Gudhi Library. The Gudhi library +(Geometric Understanding in Higher Dimensions) is a generic C++ library for +computational topology. + +Author(s): François Godi + +Copyright (C) 2015 INRIA + +This program is free software: you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free Software +Foundation, either version 3 of the License, or (at your option) any later +version. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with +this program. If not, see . diff --git a/src/Contraction/doc/COPYRIGHT b/src/Contraction/doc/COPYRIGHT new file mode 100644 index 00000000..1de850d7 --- /dev/null +++ b/src/Contraction/doc/COPYRIGHT @@ -0,0 +1,18 @@ +The files of this directory are part of the Gudhi Library. The Gudhi library +(Geometric Understanding in Higher Dimensions) is a generic C++ library for +computational topology. + +Author(s): David Salinas +Copyright (C) 2015 INRIA + +This program is free software: you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free Software +Foundation, either version 3 of the License, or (at your option) any later +version. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with +this program. If not, see . diff --git a/src/Persistent_cohomology/doc/COPYRIGHT b/src/Persistent_cohomology/doc/COPYRIGHT new file mode 100644 index 00000000..34345bef --- /dev/null +++ b/src/Persistent_cohomology/doc/COPYRIGHT @@ -0,0 +1,19 @@ +The files of this directory are part of the Gudhi Library. The Gudhi library +(Geometric Understanding in Higher Dimensions) is a generic C++ library for +computational topology. + +Author(s): Clément Maria + +Copyright (C) 2015 INRIA + +This program is free software: you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free Software +Foundation, either version 3 of the License, or (at your option) any later +version. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with +this program. If not, see . diff --git a/src/Rips_complex/doc/COPYRIGHT b/src/Rips_complex/doc/COPYRIGHT new file mode 100644 index 00000000..594b7d03 --- /dev/null +++ b/src/Rips_complex/doc/COPYRIGHT @@ -0,0 +1,19 @@ +The files of this directory are part of the Gudhi Library. The Gudhi library +(Geometric Understanding in Higher Dimensions) is a generic C++ library for +computational topology. + +Author(s): Clément Maria, Pawel Dlotko, Vincent Rouvreau + +Copyright (C) 2015 INRIA + +This program is free software: you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free Software +Foundation, either version 3 of the License, or (at your option) any later +version. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with +this program. If not, see . diff --git a/src/Simplex_tree/doc/COPYRIGHT b/src/Simplex_tree/doc/COPYRIGHT new file mode 100644 index 00000000..34345bef --- /dev/null +++ b/src/Simplex_tree/doc/COPYRIGHT @@ -0,0 +1,19 @@ +The files of this directory are part of the Gudhi Library. The Gudhi library +(Geometric Understanding in Higher Dimensions) is a generic C++ library for +computational topology. + +Author(s): Clément Maria + +Copyright (C) 2015 INRIA + +This program is free software: you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free Software +Foundation, either version 3 of the License, or (at your option) any later +version. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with +this program. If not, see . diff --git a/src/Skeleton_blocker/doc/COPYRIGHT b/src/Skeleton_blocker/doc/COPYRIGHT new file mode 100644 index 00000000..1de850d7 --- /dev/null +++ b/src/Skeleton_blocker/doc/COPYRIGHT @@ -0,0 +1,18 @@ +The files of this directory are part of the Gudhi Library. The Gudhi library +(Geometric Understanding in Higher Dimensions) is a generic C++ library for +computational topology. + +Author(s): David Salinas +Copyright (C) 2015 INRIA + +This program is free software: you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free Software +Foundation, either version 3 of the License, or (at your option) any later +version. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with +this program. If not, see . diff --git a/src/Tangential_complex/doc/COPYRIGHT b/src/Tangential_complex/doc/COPYRIGHT new file mode 100644 index 00000000..c4df0f64 --- /dev/null +++ b/src/Tangential_complex/doc/COPYRIGHT @@ -0,0 +1,19 @@ +The files of this directory are part of the Gudhi Library. The Gudhi library +(Geometric Understanding in Higher Dimensions) is a generic C++ library for +computational topology. + +Author(s): Clement Jamin + +Copyright (C) 2015 INRIA + +This program is free software: you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free Software +Foundation, either version 3 of the License, or (at your option) any later +version. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with +this program. If not, see . diff --git a/src/Witness_complex/doc/COPYRIGHT b/src/Witness_complex/doc/COPYRIGHT new file mode 100644 index 00000000..7d032c87 --- /dev/null +++ b/src/Witness_complex/doc/COPYRIGHT @@ -0,0 +1,19 @@ +The files of this directory are part of the Gudhi Library. The Gudhi library +(Geometric Understanding in Higher Dimensions) is a generic C++ library for +computational topology. + +Author(s): Siargey Kachanovich + +Copyright (C) 2015 INRIA + +This program is free software: you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free Software +Foundation, either version 3 of the License, or (at your option) any later +version. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with +this program. If not, see . -- cgit v1.2.3 From 75ed64f753068cf965153a5d90dc17233524d213 Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Tue, 7 Mar 2017 16:01:51 +0000 Subject: Factorization of from functions Add exact alpha complex 3d example git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/alpha_3d_fix@2168 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 1c55851fd2ebcf8ec553854baca803c08b6634c4 --- .../example/alpha_complex_3d_helper.h | 76 +++++++ .../example/alpha_complex_3d_persistence.cpp | 58 +---- .../example/exact_alpha_complex_3d_persistence.cpp | 242 +++++++++++++++++++++ 3 files changed, 325 insertions(+), 51 deletions(-) create mode 100644 src/Persistent_cohomology/example/alpha_complex_3d_helper.h create mode 100644 src/Persistent_cohomology/example/exact_alpha_complex_3d_persistence.cpp diff --git a/src/Persistent_cohomology/example/alpha_complex_3d_helper.h b/src/Persistent_cohomology/example/alpha_complex_3d_helper.h new file mode 100644 index 00000000..ceefd2ba --- /dev/null +++ b/src/Persistent_cohomology/example/alpha_complex_3d_helper.h @@ -0,0 +1,76 @@ +/* This file is part of the Gudhi Library. The Gudhi library + * (Geometric Understanding in Higher Dimensions) is a generic C++ + * library for computational topology. + * + * Author(s): Vincent Rouvreau + * + * Copyright (C) 2014 INRIA Saclay (France) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef EXAMPLE_PERSISTENT_COHOMOLOGY_ALPHA_COMPLEX_3D_HELPER_H_ +#define EXAMPLE_PERSISTENT_COHOMOLOGY_ALPHA_COMPLEX_3D_HELPER_H_ + +template +Vertex_list from_cell(const Cell_handle& ch) { + Vertex_list the_list; + for (auto i = 0; i < 4; i++) { +#ifdef DEBUG_TRACES + std::cout << "from cell[" << i << "]=" << ch->vertex(i)->point() << std::endl; +#endif // DEBUG_TRACES + the_list.push_back(ch->vertex(i)); + } + return the_list; +} + +template +Vertex_list from_facet(const Facet& fct) { + Vertex_list the_list; + for (auto i = 0; i < 4; i++) { + if (fct.second != i) { +#ifdef DEBUG_TRACES + std::cout << "from facet=[" << i << "]" << fct.first->vertex(i)->point() << std::endl; +#endif // DEBUG_TRACES + the_list.push_back(fct.first->vertex(i)); + } + } + return the_list; +} + +template +Vertex_list from_edge(const Edge_3& edg) { + Vertex_list the_list; + for (auto i = 0; i < 4; i++) { + if ((edg.second == i) || (edg.third == i)) { +#ifdef DEBUG_TRACES + std::cout << "from edge[" << i << "]=" << edg.first->vertex(i)->point() << std::endl; +#endif // DEBUG_TRACES + the_list.push_back(edg.first->vertex(i)); + } + } + return the_list; +} + +template +Vertex_list from_vertex(const Vertex_handle& vh) { + Vertex_list the_list; +#ifdef DEBUG_TRACES + std::cout << "from vertex=" << vh->point() << std::endl; +#endif // DEBUG_TRACES + the_list.push_back(vh); + return the_list; +} + +#endif // EXAMPLE_PERSISTENT_COHOMOLOGY_ALPHA_COMPLEX_3D_HELPER_H_ diff --git a/src/Persistent_cohomology/example/alpha_complex_3d_persistence.cpp b/src/Persistent_cohomology/example/alpha_complex_3d_persistence.cpp index 48fbb91a..b5084e5b 100644 --- a/src/Persistent_cohomology/example/alpha_complex_3d_persistence.cpp +++ b/src/Persistent_cohomology/example/alpha_complex_3d_persistence.cpp @@ -30,6 +30,8 @@ #include #include +#include "alpha_complex_3d_helper.h" + #include #include #include @@ -70,53 +72,7 @@ typedef std::pair Alpha_shape typedef std::vector< Simplex_tree_vertex > Simplex_tree_vector_vertex; typedef Gudhi::persistent_cohomology::Persistent_cohomology< ST, Gudhi::persistent_cohomology::Field_Zp > PCOH; -Vertex_list from(const Cell_handle& ch) { - Vertex_list the_list; - for (auto i = 0; i < 4; i++) { -#ifdef DEBUG_TRACES - std::cout << "from cell[" << i << "]=" << ch->vertex(i)->point() << std::endl; -#endif // DEBUG_TRACES - the_list.push_back(ch->vertex(i)); - } - return the_list; -} - -Vertex_list from(const Facet& fct) { - Vertex_list the_list; - for (auto i = 0; i < 4; i++) { - if (fct.second != i) { -#ifdef DEBUG_TRACES - std::cout << "from facet=[" << i << "]" << fct.first->vertex(i)->point() << std::endl; -#endif // DEBUG_TRACES - the_list.push_back(fct.first->vertex(i)); - } - } - return the_list; -} - -Vertex_list from(const Edge_3& edg) { - Vertex_list the_list; - for (auto i = 0; i < 4; i++) { - if ((edg.second == i) || (edg.third == i)) { -#ifdef DEBUG_TRACES - std::cout << "from edge[" << i << "]=" << edg.first->vertex(i)->point() << std::endl; -#endif // DEBUG_TRACES - the_list.push_back(edg.first->vertex(i)); - } - } - return the_list; -} - -Vertex_list from(const Alpha_shape_3::Vertex_handle& vh) { - Vertex_list the_list; -#ifdef DEBUG_TRACES - std::cout << "from vertex=" << vh->point() << std::endl; -#endif // DEBUG_TRACES - the_list.push_back(vh); - return the_list; -} - -void usage(char * const progName) { +void usage(const std::string& progName) { std::cerr << "Usage: " << progName << " path_to_file_graph coeff_field_characteristic[integer > 0] min_persistence[float >= -1.0]\n"; exit(-1); @@ -184,21 +140,21 @@ int main(int argc, char * const argv[]) { for (auto object_iterator : the_objects) { // Retrieve Alpha shape vertex list from object if (const Cell_handle * cell = CGAL::object_cast(&object_iterator)) { - vertex_list = from(*cell); + vertex_list = from_cell(*cell); count_cells++; if (dim_max < 3) { // Cell is of dim 3 dim_max = 3; } } else if (const Facet * facet = CGAL::object_cast(&object_iterator)) { - vertex_list = from(*facet); + vertex_list = from_facet(*facet); count_facets++; if (dim_max < 2) { // Facet is of dim 2 dim_max = 2; } } else if (const Edge_3 * edge = CGAL::object_cast(&object_iterator)) { - vertex_list = from(*edge); + vertex_list = from_edge(*edge); count_edges++; if (dim_max < 1) { // Edge_3 is of dim 1 @@ -207,7 +163,7 @@ int main(int argc, char * const argv[]) { } else if (const Alpha_shape_3::Vertex_handle * vertex = CGAL::object_cast(&object_iterator)) { count_vertices++; - vertex_list = from(*vertex); + vertex_list = from_vertex(*vertex); } // Construction of the vector of simplex_tree vertex from list of alpha_shapes vertex Simplex_tree_vector_vertex the_simplex_tree; diff --git a/src/Persistent_cohomology/example/exact_alpha_complex_3d_persistence.cpp b/src/Persistent_cohomology/example/exact_alpha_complex_3d_persistence.cpp new file mode 100644 index 00000000..fc6ee8dd --- /dev/null +++ b/src/Persistent_cohomology/example/exact_alpha_complex_3d_persistence.cpp @@ -0,0 +1,242 @@ +/* This file is part of the Gudhi Library. The Gudhi library + * (Geometric Understanding in Higher Dimensions) is a generic C++ + * library for computational topology. + * + * Author(s): Vincent Rouvreau + * + * Copyright (C) 2014 INRIA Saclay (France) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include +#include + +#include +#include +#include +#include + +#include "alpha_complex_3d_helper.h" + +#include +#include +#include +#include +#include +#include +#include +#include + +// Alpha_shape_3 templates type definitions +typedef CGAL::Exact_predicates_inexact_constructions_kernel Kernel; +typedef CGAL::Tag_true Exact_tag; +typedef CGAL::Alpha_shape_vertex_base_3 Vb; +typedef CGAL::Alpha_shape_cell_base_3 Fb; +typedef CGAL::Triangulation_data_structure_3 Tds; +typedef CGAL::Delaunay_triangulation_3 Triangulation_3; +typedef CGAL::Alpha_shape_3 Alpha_shape_3; + +// From file type definition +typedef Kernel::Point_3 Point_3; + +// filtration with alpha values needed type definition +typedef Alpha_shape_3::FT Alpha_value_type; +typedef CGAL::Object Object; +typedef CGAL::Dispatch_output_iterator< +CGAL::cpp11::tuple, +CGAL::cpp11::tuple >, + std::back_insert_iterator< std::vector > > > Dispatch; +typedef Alpha_shape_3::Cell_handle Cell_handle; +typedef Alpha_shape_3::Facet Facet; +typedef Alpha_shape_3::Edge Edge_3; +typedef Alpha_shape_3::Vertex_handle Vertex_handle; +typedef std::list Vertex_list; + +// gudhi type definition +typedef Gudhi::Simplex_tree ST; +typedef ST::Vertex_handle Simplex_tree_vertex; +typedef std::map Alpha_shape_simplex_tree_map; +typedef std::pair Alpha_shape_simplex_tree_pair; +typedef std::vector< Simplex_tree_vertex > Simplex_tree_vector_vertex; +typedef Gudhi::persistent_cohomology::Persistent_cohomology< ST, Gudhi::persistent_cohomology::Field_Zp > PCOH; + +void usage(char * const progName) { + std::cerr << "Usage: " << progName << + " path_to_file_graph coeff_field_characteristic[integer > 0] min_persistence[float >= -1.0]\n"; + exit(-1); +} + +int main(int argc, char * const argv[]) { + // program args management + if (argc != 4) { + std::cerr << "Error: Number of arguments (" << argc << ") is not correct\n"; + usage(argv[0]); + } + + int coeff_field_characteristic = atoi(argv[2]); + + Filtration_value min_persistence = 0.0; + int returnedScanValue = sscanf(argv[3], "%lf", &min_persistence); + if ((returnedScanValue == EOF) || (min_persistence < -1.0)) { + std::cerr << "Error: " << argv[3] << " is not correct\n"; + usage(argv[0]); + } + + // Read points from file + std::string offInputFile(argv[1]); + // Read the OFF file (input file name given as parameter) and triangulate points + Gudhi::Points_3D_off_reader off_reader(offInputFile); + // Check the read operation was correct + if (!off_reader.is_valid()) { + std::cerr << "Unable to read file " << offInputFile << std::endl; + usage(argv[0]); + } + + // Retrieve the triangulation + std::vector lp = off_reader.get_point_cloud(); + + // alpha shape construction from points. CGAL has a strange behavior in REGULARIZED mode. + Alpha_shape_3 as(lp.begin(), lp.end(), 0, Alpha_shape_3::GENERAL); +#ifdef DEBUG_TRACES + std::cout << "Alpha shape computed in GENERAL mode" << std::endl; +#endif // DEBUG_TRACES + + // filtration with alpha values from alpha shape + std::vector the_objects; + std::vector the_alpha_values; + + Dispatch disp = CGAL::dispatch_output(std::back_inserter(the_objects), + std::back_inserter(the_alpha_values)); + + as.filtration_with_alpha_values(disp); +#ifdef DEBUG_TRACES + std::cout << "filtration_with_alpha_values returns : " << the_objects.size() << " objects" << std::endl; +#endif // DEBUG_TRACES + + Alpha_shape_3::size_type count_vertices = 0; + Alpha_shape_3::size_type count_edges = 0; + Alpha_shape_3::size_type count_facets = 0; + Alpha_shape_3::size_type count_cells = 0; + + // Loop on objects vector + Vertex_list vertex_list; + ST simplex_tree; + Alpha_shape_simplex_tree_map map_cgal_simplex_tree; + std::vector::iterator the_alpha_value_iterator = the_alpha_values.begin(); + int dim_max = 0; + Filtration_value filtration_max = 0.0; + for (auto object_iterator : the_objects) { + // Retrieve Alpha shape vertex list from object + if (const Cell_handle * cell = CGAL::object_cast(&object_iterator)) { + vertex_list = from_cell(*cell); + count_cells++; + if (dim_max < 3) { + // Cell is of dim 3 + dim_max = 3; + } + } else if (const Facet * facet = CGAL::object_cast(&object_iterator)) { + vertex_list = from_facet(*facet); + count_facets++; + if (dim_max < 2) { + // Facet is of dim 2 + dim_max = 2; + } + } else if (const Edge_3 * edge = CGAL::object_cast(&object_iterator)) { + vertex_list = from_edge(*edge); + count_edges++; + if (dim_max < 1) { + // Edge_3 is of dim 1 + dim_max = 1; + } + } else if (const Vertex_handle * vertex = CGAL::object_cast(&object_iterator)) { + count_vertices++; + vertex_list = from_vertex(*vertex); + } + // Construction of the vector of simplex_tree vertex from list of alpha_shapes vertex + Simplex_tree_vector_vertex the_simplex_tree; + for (auto the_alpha_shape_vertex : vertex_list) { + Alpha_shape_simplex_tree_map::iterator the_map_iterator = map_cgal_simplex_tree.find(the_alpha_shape_vertex); + if (the_map_iterator == map_cgal_simplex_tree.end()) { + // alpha shape not found + Simplex_tree_vertex vertex = map_cgal_simplex_tree.size(); +#ifdef DEBUG_TRACES + std::cout << "vertex [" << the_alpha_shape_vertex->point() << "] not found - insert " << vertex << std::endl; +#endif // DEBUG_TRACES + the_simplex_tree.push_back(vertex); + map_cgal_simplex_tree.insert(Alpha_shape_simplex_tree_pair(the_alpha_shape_vertex, vertex)); + } else { + // alpha shape found + Simplex_tree_vertex vertex = the_map_iterator->second; +#ifdef DEBUG_TRACES + std::cout << "vertex [" << the_alpha_shape_vertex->point() << "] found in " << vertex << std::endl; +#endif // DEBUG_TRACES + the_simplex_tree.push_back(vertex); + } + } + // Construction of the simplex_tree + Filtration_value filtr = /*std::sqrt*/CGAL::to_double(the_alpha_value_iterator->approx()); +#ifdef DEBUG_TRACES + std::cout << "filtration = " << filtr << std::endl; +#endif // DEBUG_TRACES + if (filtr > filtration_max) { + filtration_max = filtr; + } + simplex_tree.insert_simplex(the_simplex_tree, filtr); + if (the_alpha_value_iterator != the_alpha_values.end()) + ++the_alpha_value_iterator; + else + std::cout << "This shall not happen" << std::endl; + } + simplex_tree.set_filtration(filtration_max); + simplex_tree.set_dimension(dim_max); + +#ifdef DEBUG_TRACES + std::cout << "vertices \t\t" << count_vertices << std::endl; + std::cout << "edges \t\t" << count_edges << std::endl; + std::cout << "facets \t\t" << count_facets << std::endl; + std::cout << "cells \t\t" << count_cells << std::endl; + + + std::cout << "Information of the Simplex Tree: " << std::endl; + std::cout << " Number of vertices = " << simplex_tree.num_vertices() << " "; + std::cout << " Number of simplices = " << simplex_tree.num_simplices() << std::endl << std::endl; + std::cout << " Dimension = " << simplex_tree.dimension() << " "; + std::cout << " filtration = " << simplex_tree.filtration() << std::endl << std::endl; +#endif // DEBUG_TRACES + +#ifdef DEBUG_TRACES + std::cout << "Iterator on vertices: " << std::endl; + for (auto vertex : simplex_tree.complex_vertex_range()) { + std::cout << vertex << " "; + } +#endif // DEBUG_TRACES + + // Sort the simplices in the order of the filtration + simplex_tree.initialize_filtration(); + + std::cout << "Simplex_tree dim: " << simplex_tree.dimension() << std::endl; + // Compute the persistence diagram of the complex + PCOH pcoh(simplex_tree); + // initializes the coefficient field for homology + pcoh.init_coefficients(coeff_field_characteristic); + + pcoh.compute_persistent_cohomology(min_persistence); + + pcoh.output_diagram(); + + return 0; +} -- cgit v1.2.3 From 572c8f53ba26d39eaec39f48cdbdd64c0b7894c2 Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Tue, 7 Mar 2017 21:47:18 +0000 Subject: Add doc for exact alpha CMake for exact alpha Factorization git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/alpha_3d_fix@2170 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: b2ac281dd21313602590fc834e7ad22bbf081021 --- .../doc/Intro_persistent_cohomology.h | 12 +++++ src/Persistent_cohomology/example/CMakeLists.txt | 4 ++ .../example/alpha_complex_3d_persistence.cpp | 54 ++++++++++---------- .../example/exact_alpha_complex_3d_persistence.cpp | 56 +++++++++++---------- .../periodic_alpha_complex_3d_persistence.cpp | 57 +++------------------- src/common/doc/main_page.h | 5 ++ 6 files changed, 84 insertions(+), 104 deletions(-) diff --git a/src/Persistent_cohomology/doc/Intro_persistent_cohomology.h b/src/Persistent_cohomology/doc/Intro_persistent_cohomology.h index 40dd3f93..d758687c 100644 --- a/src/Persistent_cohomology/doc/Intro_persistent_cohomology.h +++ b/src/Persistent_cohomology/doc/Intro_persistent_cohomology.h @@ -172,6 +172,18 @@ Persistent_cohomology/alpha_complex_3d_persistence.cpp computes the persiste 2 1 0.0934117 1.00003 2 2 0.56444 1.03938 \endcode +\li +Persistent_cohomology/exact_alpha_complex_3d_persistence.cpp computes the persistent homology with +\f$\mathbb{Z}/2\mathbb{Z}\f$ coefficients of the alpha complex on points sampling from an OFF file. +Here, as CGAL computes the exact values, it is slower, but it is necessary when points are on a grid +for instance. +\code $> ./exact_alpha_complex_3d_persistence ../../data/points/tore3D_300.off 2 0.45 \endcode +\code Simplex_tree dim: 3 +2 0 0 inf +2 1 0.0682162 1.0001 +2 1 0.0934117 1.00003 +2 2 0.56444 1.03938 \endcode + \li Persistent_cohomology/alpha_complex_persistence.cpp computes the persistent homology with \f$\mathbb{Z}/p\mathbb{Z}\f$ coefficients of the alpha complex on points sampling from an OFF file. diff --git a/src/Persistent_cohomology/example/CMakeLists.txt b/src/Persistent_cohomology/example/CMakeLists.txt index d2a84b1e..a7905284 100644 --- a/src/Persistent_cohomology/example/CMakeLists.txt +++ b/src/Persistent_cohomology/example/CMakeLists.txt @@ -55,11 +55,15 @@ endif(GMP_FOUND) if(CGAL_FOUND) add_executable(alpha_complex_3d_persistence alpha_complex_3d_persistence.cpp) target_link_libraries(alpha_complex_3d_persistence ${Boost_SYSTEM_LIBRARY} ${CGAL_LIBRARY}) + add_executable(exact_alpha_complex_3d_persistence exact_alpha_complex_3d_persistence.cpp) + target_link_libraries(exact_alpha_complex_3d_persistence ${Boost_SYSTEM_LIBRARY} ${CGAL_LIBRARY}) if (TBB_FOUND) target_link_libraries(alpha_complex_3d_persistence ${TBB_LIBRARIES}) + target_link_libraries(exact_alpha_complex_3d_persistence ${TBB_LIBRARIES}) endif(TBB_FOUND) add_test(alpha_complex_3d_persistence_2_0_5 ${CMAKE_CURRENT_BINARY_DIR}/alpha_complex_3d_persistence ${CMAKE_SOURCE_DIR}/data/points/tore3D_300.off 2 0.45) + add_test(exact_alpha_complex_3d_persistence_2_0_5 ${CMAKE_CURRENT_BINARY_DIR}/exact_alpha_complex_3d_persistence ${CMAKE_SOURCE_DIR}/data/points/tore3D_300.off 2 0.45) if (NOT CGAL_VERSION VERSION_LESS 4.7.0) diff --git a/src/Persistent_cohomology/example/alpha_complex_3d_persistence.cpp b/src/Persistent_cohomology/example/alpha_complex_3d_persistence.cpp index 371acede..ffb98283 100644 --- a/src/Persistent_cohomology/example/alpha_complex_3d_persistence.cpp +++ b/src/Persistent_cohomology/example/alpha_complex_3d_persistence.cpp @@ -42,36 +42,37 @@ #include // Alpha_shape_3 templates type definitions -typedef CGAL::Exact_predicates_inexact_constructions_kernel Kernel; -typedef CGAL::Alpha_shape_vertex_base_3 Vb; -typedef CGAL::Alpha_shape_cell_base_3 Fb; -typedef CGAL::Triangulation_data_structure_3 Tds; -typedef CGAL::Delaunay_triangulation_3 Triangulation_3; -typedef CGAL::Alpha_shape_3 Alpha_shape_3; +using Kernel = CGAL::Exact_predicates_inexact_constructions_kernel; +using Vb = CGAL::Alpha_shape_vertex_base_3; +using Fb = CGAL::Alpha_shape_cell_base_3; +using Tds = CGAL::Triangulation_data_structure_3; +using Triangulation_3 = CGAL::Delaunay_triangulation_3; +using Alpha_shape_3 = CGAL::Alpha_shape_3; // From file type definition -typedef Kernel::Point_3 Point_3; +using Point_3 = Kernel::Point_3; // filtration with alpha values needed type definition -typedef Alpha_shape_3::FT Alpha_value_type; -typedef CGAL::Object Object; -typedef CGAL::Dispatch_output_iterator< -CGAL::cpp11::tuple, -CGAL::cpp11::tuple >, - std::back_insert_iterator< std::vector > > > Dispatch; -typedef Alpha_shape_3::Cell_handle Cell_handle; -typedef Alpha_shape_3::Facet Facet; -typedef Alpha_shape_3::Edge Edge_3; -typedef std::list Vertex_list; +using Alpha_value_type = Alpha_shape_3::FT; +using Object = CGAL::Object; +using Dispatch = CGAL::Dispatch_output_iterator< + CGAL::cpp11::tuple, + CGAL::cpp11::tuple >, + std::back_insert_iterator< std::vector > > >; +using Cell_handle = Alpha_shape_3::Cell_handle; +using Facet = Alpha_shape_3::Facet; +using Edge_3 = Alpha_shape_3::Edge; +using Vertex_handle = Alpha_shape_3::Vertex_handle; +using Vertex_list = std::list; // gudhi type definition -typedef Gudhi::Simplex_tree ST; -typedef ST::Filtration_value Filtration_value; -typedef ST::Vertex_handle Simplex_tree_vertex; -typedef std::map Alpha_shape_simplex_tree_map; -typedef std::pair Alpha_shape_simplex_tree_pair; -typedef std::vector< Simplex_tree_vertex > Simplex_tree_vector_vertex; -typedef Gudhi::persistent_cohomology::Persistent_cohomology< ST, Gudhi::persistent_cohomology::Field_Zp > PCOH; +using ST = Gudhi::Simplex_tree; +using Filtration_value = ST::Filtration_value; +using Simplex_tree_vertex = ST::Vertex_handle; +using Alpha_shape_simplex_tree_map = std::map; +using Alpha_shape_simplex_tree_pair = std::pair; +using Simplex_tree_vector_vertex = std::vector< Simplex_tree_vertex >; +using PCOH = Gudhi::persistent_cohomology::Persistent_cohomology< ST, Gudhi::persistent_cohomology::Field_Zp >; void usage(const std::string& progName) { std::cerr << "Usage: " << progName << @@ -161,10 +162,9 @@ int main(int argc, char * const argv[]) { // Edge_3 is of dim 1 dim_max = 1; } - } else if (const Alpha_shape_3::Vertex_handle * vertex = - CGAL::object_cast(&object_iterator)) { + } else if (const Vertex_handle * vertex = CGAL::object_cast(&object_iterator)) { count_vertices++; - vertex_list = from_vertex(*vertex); + vertex_list = from_vertex(*vertex); } // Construction of the vector of simplex_tree vertex from list of alpha_shapes vertex Simplex_tree_vector_vertex the_simplex_tree; diff --git a/src/Persistent_cohomology/example/exact_alpha_complex_3d_persistence.cpp b/src/Persistent_cohomology/example/exact_alpha_complex_3d_persistence.cpp index fc6ee8dd..c016a596 100644 --- a/src/Persistent_cohomology/example/exact_alpha_complex_3d_persistence.cpp +++ b/src/Persistent_cohomology/example/exact_alpha_complex_3d_persistence.cpp @@ -42,37 +42,38 @@ #include // Alpha_shape_3 templates type definitions -typedef CGAL::Exact_predicates_inexact_constructions_kernel Kernel; -typedef CGAL::Tag_true Exact_tag; -typedef CGAL::Alpha_shape_vertex_base_3 Vb; -typedef CGAL::Alpha_shape_cell_base_3 Fb; -typedef CGAL::Triangulation_data_structure_3 Tds; -typedef CGAL::Delaunay_triangulation_3 Triangulation_3; -typedef CGAL::Alpha_shape_3 Alpha_shape_3; +using Kernel = CGAL::Exact_predicates_inexact_constructions_kernel; +using Exact_tag = CGAL::Tag_true; +using Vb = CGAL::Alpha_shape_vertex_base_3; +using Fb = CGAL::Alpha_shape_cell_base_3; +using Tds = CGAL::Triangulation_data_structure_3; +using Triangulation_3 = CGAL::Delaunay_triangulation_3; +using Alpha_shape_3 = CGAL::Alpha_shape_3; // From file type definition -typedef Kernel::Point_3 Point_3; +using Point_3 = Kernel::Point_3; // filtration with alpha values needed type definition -typedef Alpha_shape_3::FT Alpha_value_type; -typedef CGAL::Object Object; -typedef CGAL::Dispatch_output_iterator< -CGAL::cpp11::tuple, -CGAL::cpp11::tuple >, - std::back_insert_iterator< std::vector > > > Dispatch; -typedef Alpha_shape_3::Cell_handle Cell_handle; -typedef Alpha_shape_3::Facet Facet; -typedef Alpha_shape_3::Edge Edge_3; -typedef Alpha_shape_3::Vertex_handle Vertex_handle; -typedef std::list Vertex_list; +using Alpha_value_type = Alpha_shape_3::FT; +using Object = CGAL::Object; +using Dispatch = CGAL::Dispatch_output_iterator< + CGAL::cpp11::tuple, + CGAL::cpp11::tuple >, + std::back_insert_iterator< std::vector > > >; +using Cell_handle = Alpha_shape_3::Cell_handle; +using Facet = Alpha_shape_3::Facet; +using Edge_3 = Alpha_shape_3::Edge; +using Vertex_handle = Alpha_shape_3::Vertex_handle; +using Vertex_list = std::list; // gudhi type definition -typedef Gudhi::Simplex_tree ST; -typedef ST::Vertex_handle Simplex_tree_vertex; -typedef std::map Alpha_shape_simplex_tree_map; -typedef std::pair Alpha_shape_simplex_tree_pair; -typedef std::vector< Simplex_tree_vertex > Simplex_tree_vector_vertex; -typedef Gudhi::persistent_cohomology::Persistent_cohomology< ST, Gudhi::persistent_cohomology::Field_Zp > PCOH; +using ST = Gudhi::Simplex_tree; +using Filtration_value = ST::Filtration_value; +using Simplex_tree_vertex = ST::Vertex_handle; +using Alpha_shape_simplex_tree_map = std::map; +using Alpha_shape_simplex_tree_pair = std::pair; +using Simplex_tree_vector_vertex = std::vector< Simplex_tree_vertex >; +using PCOH = Gudhi::persistent_cohomology::Persistent_cohomology< ST, Gudhi::persistent_cohomology::Field_Zp >; void usage(char * const progName) { std::cerr << "Usage: " << progName << @@ -90,7 +91,7 @@ int main(int argc, char * const argv[]) { int coeff_field_characteristic = atoi(argv[2]); Filtration_value min_persistence = 0.0; - int returnedScanValue = sscanf(argv[3], "%lf", &min_persistence); + int returnedScanValue = sscanf(argv[3], "%f", &min_persistence); if ((returnedScanValue == EOF) || (min_persistence < -1.0)) { std::cerr << "Error: " << argv[3] << " is not correct\n"; usage(argv[0]); @@ -188,7 +189,8 @@ int main(int argc, char * const argv[]) { } } // Construction of the simplex_tree - Filtration_value filtr = /*std::sqrt*/CGAL::to_double(the_alpha_value_iterator->approx()); + // you can also use the_alpha_value_iterator->exact() + Filtration_value filtr = /*std::sqrt*/CGAL::to_double(the_alpha_value_iterator->exact()); #ifdef DEBUG_TRACES std::cout << "filtration = " << filtr << std::endl; #endif // DEBUG_TRACES diff --git a/src/Persistent_cohomology/example/periodic_alpha_complex_3d_persistence.cpp b/src/Persistent_cohomology/example/periodic_alpha_complex_3d_persistence.cpp index dbc42706..4f6ea40e 100644 --- a/src/Persistent_cohomology/example/periodic_alpha_complex_3d_persistence.cpp +++ b/src/Persistent_cohomology/example/periodic_alpha_complex_3d_persistence.cpp @@ -31,6 +31,8 @@ #include #include +#include "alpha_complex_3d_helper.h" + #include #include #include @@ -67,6 +69,7 @@ using Dispatch = CGAL::Dispatch_output_iterator< using Cell_handle = Alpha_shape_3::Cell_handle; using Facet = Alpha_shape_3::Facet; using Edge_3 = Alpha_shape_3::Edge; +using Vertex_handle = Alpha_shape_3::Vertex_handle; using Vertex_list = std::list; // gudhi type definition @@ -79,52 +82,6 @@ using Simplex_tree_vector_vertex = std::vector< Simplex_tree_vertex >; using Persistent_cohomology = Gudhi::persistent_cohomology::Persistent_cohomology< ST, Gudhi::persistent_cohomology::Field_Zp >; -Vertex_list from(const Cell_handle& ch) { - Vertex_list the_list; - for (auto i = 0; i < 4; i++) { -#ifdef DEBUG_TRACES - std::cout << "from cell[" << i << "]=" << ch->vertex(i)->point() << std::endl; -#endif // DEBUG_TRACES - the_list.push_back(ch->vertex(i)); - } - return the_list; -} - -Vertex_list from(const Facet& fct) { - Vertex_list the_list; - for (auto i = 0; i < 4; i++) { - if (fct.second != i) { -#ifdef DEBUG_TRACES - std::cout << "from facet=[" << i << "]" << fct.first->vertex(i)->point() << std::endl; -#endif // DEBUG_TRACES - the_list.push_back(fct.first->vertex(i)); - } - } - return the_list; -} - -Vertex_list from(const Edge_3& edg) { - Vertex_list the_list; - for (auto i = 0; i < 4; i++) { - if ((edg.second == i) || (edg.third == i)) { -#ifdef DEBUG_TRACES - std::cout << "from edge[" << i << "]=" << edg.first->vertex(i)->point() << std::endl; -#endif // DEBUG_TRACES - the_list.push_back(edg.first->vertex(i)); - } - } - return the_list; -} - -Vertex_list from(const Alpha_shape_3::Vertex_handle& vh) { - Vertex_list the_list; -#ifdef DEBUG_TRACES - std::cout << "from vertex=" << vh->point() << std::endl; -#endif // DEBUG_TRACES - the_list.push_back(vh); - return the_list; -} - void usage(char * const progName) { std::cerr << "Usage: " << progName << " path_to_file_graph path_to_iso_cuboid_3_file coeff_field_characteristic[integer > 0] min_persistence[float >= -1.0]\n"; @@ -203,21 +160,21 @@ int main(int argc, char * const argv[]) { for (auto object_iterator : the_objects) { // Retrieve Alpha shape vertex list from object if (const Cell_handle * cell = CGAL::object_cast(&object_iterator)) { - vertex_list = from(*cell); + vertex_list = from_cell(*cell); count_cells++; if (dim_max < 3) { // Cell is of dim 3 dim_max = 3; } } else if (const Facet * facet = CGAL::object_cast(&object_iterator)) { - vertex_list = from(*facet); + vertex_list = from_facet(*facet); count_facets++; if (dim_max < 2) { // Facet is of dim 2 dim_max = 2; } } else if (const Edge_3 * edge = CGAL::object_cast(&object_iterator)) { - vertex_list = from(*edge); + vertex_list = from_edge(*edge); count_edges++; if (dim_max < 1) { // Edge_3 is of dim 1 @@ -226,7 +183,7 @@ int main(int argc, char * const argv[]) { } else if (const Alpha_shape_3::Vertex_handle * vertex = CGAL::object_cast(&object_iterator)) { count_vertices++; - vertex_list = from(*vertex); + vertex_list = from_vertex(*vertex); } // Construction of the vector of simplex_tree vertex from list of alpha_shapes vertex Simplex_tree_vector_vertex the_simplex_tree; diff --git a/src/common/doc/main_page.h b/src/common/doc/main_page.h index 5ca0a6bc..34ad1710 100644 --- a/src/common/doc/main_page.h +++ b/src/common/doc/main_page.h @@ -259,6 +259,8 @@ make \endverbatim * Library (CGAL \cite cgal:eb-15b) and will not be built if CGAL is not installed: * \li * Persistent_cohomology/alpha_complex_3d_persistence.cpp + * \li + * Persistent_cohomology/exact_alpha_complex_3d_persistence.cpp * \li * Simplex_tree/example_alpha_shapes_3_simplex_tree_from_off_file.cpp * @@ -350,6 +352,8 @@ make \endverbatim * Persistent_cohomology/rips_persistence.cpp * \li * Persistent_cohomology/rips_persistence_step_by_step.cpp + * \li + * Persistent_cohomology/exact_alpha_complex_3d_persistence.cpp * \li * Persistent_cohomology/periodic_alpha_complex_3d_persistence.cpp * \li @@ -394,6 +398,7 @@ make \endverbatim * @example Persistent_cohomology/alpha_complex_3d_persistence.cpp * @example Persistent_cohomology/alpha_complex_persistence.cpp * @example Persistent_cohomology/rips_persistence_via_boundary_matrix.cpp + * @example Persistent_cohomology/exact_alpha_complex_3d_persistence.cpp * @example Persistent_cohomology/periodic_alpha_complex_3d_persistence.cpp * @example Persistent_cohomology/persistence_from_file.cpp * @example Persistent_cohomology/persistence_from_simple_simplex_tree.cpp -- cgit v1.2.3 From e70be11ea956751fea99d44a46e89c9ffd5e4ddc Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Wed, 8 Mar 2017 07:11:05 +0000 Subject: Weighted alpha complex 3d feature git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/alpha_3d_fix@2176 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: a5bb0995c4aa75783666adc174245d4639057b8a --- data/points/tore3D_300.weights | 300 +++++++++++++++++++++ .../doc/Intro_persistent_cohomology.h | 12 + src/Persistent_cohomology/example/CMakeLists.txt | 44 ++- .../weighted_alpha_complex_3d_persistence.cpp | 263 ++++++++++++++++++ src/common/doc/main_page.h | 5 + 5 files changed, 611 insertions(+), 13 deletions(-) create mode 100644 data/points/tore3D_300.weights create mode 100644 src/Persistent_cohomology/example/weighted_alpha_complex_3d_persistence.cpp diff --git a/data/points/tore3D_300.weights b/data/points/tore3D_300.weights new file mode 100644 index 00000000..8087721d --- /dev/null +++ b/data/points/tore3D_300.weights @@ -0,0 +1,300 @@ +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 diff --git a/src/Persistent_cohomology/doc/Intro_persistent_cohomology.h b/src/Persistent_cohomology/doc/Intro_persistent_cohomology.h index d758687c..64360a3e 100644 --- a/src/Persistent_cohomology/doc/Intro_persistent_cohomology.h +++ b/src/Persistent_cohomology/doc/Intro_persistent_cohomology.h @@ -184,6 +184,18 @@ for instance. 2 1 0.0934117 1.00003 2 2 0.56444 1.03938 \endcode +\li +Persistent_cohomology/weighted_alpha_complex_3d_persistence.cpp computes the persistent homology with +\f$\mathbb{Z}/2\mathbb{Z}\f$ coefficients of the weighted alpha complex on points sampling from an OFF file +and a weights file. +\code $> ./weighted_alpha_complex_3d_persistence ../../data/points/tore3D_300.off +../../data/points/tore3D_300.weights 2 0.45 \endcode +\code Simplex_tree dim: 3 +2 -0 0 inf +2 1 0.0682162 1.0001 +2 1 0.0934117 1.00003 +2 2 0.56444 1.03938 \endcode + \li Persistent_cohomology/alpha_complex_persistence.cpp computes the persistent homology with \f$\mathbb{Z}/p\mathbb{Z}\f$ coefficients of the alpha complex on points sampling from an OFF file. diff --git a/src/Persistent_cohomology/example/CMakeLists.txt b/src/Persistent_cohomology/example/CMakeLists.txt index a7905284..20700d86 100644 --- a/src/Persistent_cohomology/example/CMakeLists.txt +++ b/src/Persistent_cohomology/example/CMakeLists.txt @@ -34,21 +34,29 @@ endif() add_test(plain_homology ${CMAKE_CURRENT_BINARY_DIR}/plain_homology) add_test(persistence_from_simple_simplex_tree ${CMAKE_CURRENT_BINARY_DIR}/persistence_from_simple_simplex_tree 1 0) -add_test(rips_distance_matrix ${CMAKE_CURRENT_BINARY_DIR}/rips_distance_matrix_persistence ${CMAKE_SOURCE_DIR}/data/distance_matrix/full_square_distance_matrix.csv -r 1.0 -d 3 -p 3 -m 0) -add_test(rips_persistence_3 ${CMAKE_CURRENT_BINARY_DIR}/rips_persistence ${CMAKE_SOURCE_DIR}/data/points/tore3D_1307.off -r 0.25 -m 0.5 -d 3 -p 3) -add_test(rips_persistence_step_by_step_3 ${CMAKE_CURRENT_BINARY_DIR}/rips_persistence_step_by_step ${CMAKE_SOURCE_DIR}/data/points/tore3D_1307.off -r 0.25 -m 0.5 -d 3 -p 3) -add_test(rips_persistence_via_boundary_matrix_3 ${CMAKE_CURRENT_BINARY_DIR}/rips_persistence_via_boundary_matrix ${CMAKE_SOURCE_DIR}/data/points/Kl.off -r 0.16 -d 3 -p 3 -m 100) -add_test(persistence_from_file_3_2_0 ${CMAKE_CURRENT_BINARY_DIR}/persistence_from_file ${CMAKE_SOURCE_DIR}/data/filtered_simplicial_complex/bunny_5000_complex.fsc -p 2 -m 0) -add_test(persistence_from_file_3_3_100 ${CMAKE_CURRENT_BINARY_DIR}/persistence_from_file ${CMAKE_SOURCE_DIR}/data/filtered_simplicial_complex/bunny_5000_complex.fsc -p 3 -m 100) +add_test(rips_distance_matrix ${CMAKE_CURRENT_BINARY_DIR}/rips_distance_matrix_persistence + ${CMAKE_SOURCE_DIR}/data/distance_matrix/full_square_distance_matrix.csv -r 1.0 -d 3 -p 3 -m 0) +add_test(rips_persistence_3 ${CMAKE_CURRENT_BINARY_DIR}/rips_persistence + ${CMAKE_SOURCE_DIR}/data/points/tore3D_1307.off -r 0.25 -m 0.5 -d 3 -p 3) +add_test(rips_persistence_step_by_step_3 ${CMAKE_CURRENT_BINARY_DIR}/rips_persistence_step_by_step + ${CMAKE_SOURCE_DIR}/data/points/tore3D_1307.off -r 0.25 -m 0.5 -d 3 -p 3) +add_test(rips_persistence_via_boundary_matrix_3 ${CMAKE_CURRENT_BINARY_DIR}/rips_persistence_via_boundary_matrix + ${CMAKE_SOURCE_DIR}/data/points/Kl.off -r 0.16 -d 3 -p 3 -m 100) +add_test(persistence_from_file_3_2_0 ${CMAKE_CURRENT_BINARY_DIR}/persistence_from_file + ${CMAKE_SOURCE_DIR}/data/filtered_simplicial_complex/bunny_5000_complex.fsc -p 2 -m 0) +add_test(persistence_from_file_3_3_100 ${CMAKE_CURRENT_BINARY_DIR}/persistence_from_file + ${CMAKE_SOURCE_DIR}/data/filtered_simplicial_complex/bunny_5000_complex.fsc -p 3 -m 100) if(GMP_FOUND) if(GMPXX_FOUND) add_executable(rips_multifield_persistence rips_multifield_persistence.cpp ) - target_link_libraries(rips_multifield_persistence ${Boost_SYSTEM_LIBRARY} ${Boost_PROGRAM_OPTIONS_LIBRARY} ${GMPXX_LIBRARIES} ${GMP_LIBRARIES}) + target_link_libraries(rips_multifield_persistence + ${Boost_SYSTEM_LIBRARY} ${Boost_PROGRAM_OPTIONS_LIBRARY} ${GMPXX_LIBRARIES} ${GMP_LIBRARIES}) if (TBB_FOUND) target_link_libraries(rips_multifield_persistence ${TBB_LIBRARIES}) endif(TBB_FOUND) - add_test(rips_multifield_persistence_2_71 ${CMAKE_CURRENT_BINARY_DIR}/rips_multifield_persistence ${CMAKE_SOURCE_DIR}/data/points/tore3D_1307.off -r 0.25 -m 0.5 -d 3 -p 2 -q 71) + add_test(rips_multifield_persistence_2_71 ${CMAKE_CURRENT_BINARY_DIR}/rips_multifield_persistence + ${CMAKE_SOURCE_DIR}/data/points/tore3D_1307.off -r 0.25 -m 0.5 -d 3 -p 2 -q 71) endif(GMPXX_FOUND) endif(GMP_FOUND) @@ -57,19 +65,27 @@ if(CGAL_FOUND) target_link_libraries(alpha_complex_3d_persistence ${Boost_SYSTEM_LIBRARY} ${CGAL_LIBRARY}) add_executable(exact_alpha_complex_3d_persistence exact_alpha_complex_3d_persistence.cpp) target_link_libraries(exact_alpha_complex_3d_persistence ${Boost_SYSTEM_LIBRARY} ${CGAL_LIBRARY}) + add_executable(weighted_alpha_complex_3d_persistence weighted_alpha_complex_3d_persistence.cpp) + target_link_libraries(weighted_alpha_complex_3d_persistence ${Boost_SYSTEM_LIBRARY} ${CGAL_LIBRARY}) if (TBB_FOUND) target_link_libraries(alpha_complex_3d_persistence ${TBB_LIBRARIES}) target_link_libraries(exact_alpha_complex_3d_persistence ${TBB_LIBRARIES}) + target_link_libraries(weighted_alpha_complex_3d_persistence ${TBB_LIBRARIES}) endif(TBB_FOUND) - add_test(alpha_complex_3d_persistence_2_0_5 ${CMAKE_CURRENT_BINARY_DIR}/alpha_complex_3d_persistence ${CMAKE_SOURCE_DIR}/data/points/tore3D_300.off 2 0.45) - add_test(exact_alpha_complex_3d_persistence_2_0_5 ${CMAKE_CURRENT_BINARY_DIR}/exact_alpha_complex_3d_persistence ${CMAKE_SOURCE_DIR}/data/points/tore3D_300.off 2 0.45) + add_test(alpha_complex_3d_persistence_2_0_5 ${CMAKE_CURRENT_BINARY_DIR}/alpha_complex_3d_persistence + ${CMAKE_SOURCE_DIR}/data/points/tore3D_300.off 2 0.45) + add_test(exact_alpha_complex_3d_persistence_2_0_5 ${CMAKE_CURRENT_BINARY_DIR}/exact_alpha_complex_3d_persistence + ${CMAKE_SOURCE_DIR}/data/points/tore3D_300.off 2 0.45) + add_test(weighted_alpha_complex_3d_persistence_2_0_5 ${CMAKE_CURRENT_BINARY_DIR}/weighted_alpha_complex_3d_persistence + ${CMAKE_SOURCE_DIR}/data/points/tore3D_300.off ${CMAKE_SOURCE_DIR}/data/points/tore3D_300.weights 2 0.45) if (NOT CGAL_VERSION VERSION_LESS 4.7.0) if (EIGEN3_FOUND) add_executable (alpha_complex_persistence alpha_complex_persistence.cpp) - target_link_libraries(alpha_complex_persistence ${Boost_SYSTEM_LIBRARY} ${CGAL_LIBRARY} ${Boost_PROGRAM_OPTIONS_LIBRARY}) + target_link_libraries(alpha_complex_persistence + ${Boost_SYSTEM_LIBRARY} ${CGAL_LIBRARY} ${Boost_PROGRAM_OPTIONS_LIBRARY}) add_executable(periodic_alpha_complex_3d_persistence periodic_alpha_complex_3d_persistence.cpp) target_link_libraries(periodic_alpha_complex_3d_persistence ${Boost_SYSTEM_LIBRARY} ${CGAL_LIBRARY}) @@ -82,8 +98,10 @@ if(CGAL_FOUND) target_link_libraries(periodic_alpha_complex_3d_persistence ${TBB_LIBRARIES}) target_link_libraries(custom_persistence_sort ${TBB_LIBRARIES}) endif(TBB_FOUND) - add_test(alpha_complex_persistence_2_0_45 ${CMAKE_CURRENT_BINARY_DIR}/alpha_complex_persistence ${CMAKE_SOURCE_DIR}/data/points/tore3D_300.off -m 0.45 -p 2) - add_test(periodic_alpha_complex_3d_persistence_2_0 ${CMAKE_CURRENT_BINARY_DIR}/periodic_alpha_complex_3d_persistence ${CMAKE_SOURCE_DIR}/data/points/grid_10_10_10_in_0_1.off ${CMAKE_SOURCE_DIR}/data/points/iso_cuboid_3_in_0_1.txt 2 0) + add_test(alpha_complex_persistence_2_0_45 ${CMAKE_CURRENT_BINARY_DIR}/alpha_complex_persistence + ${CMAKE_SOURCE_DIR}/data/points/tore3D_300.off -m 0.45 -p 2) + add_test(periodic_alpha_complex_3d_persistence_2_0 ${CMAKE_CURRENT_BINARY_DIR}/periodic_alpha_complex_3d_persistence + ${CMAKE_SOURCE_DIR}/data/points/grid_10_10_10_in_0_1.off ${CMAKE_SOURCE_DIR}/data/points/iso_cuboid_3_in_0_1.txt 2 0) add_test(custom_persistence_sort ${CMAKE_CURRENT_BINARY_DIR}/custom_persistence_sort) endif(EIGEN3_FOUND) endif (NOT CGAL_VERSION VERSION_LESS 4.7.0) diff --git a/src/Persistent_cohomology/example/weighted_alpha_complex_3d_persistence.cpp b/src/Persistent_cohomology/example/weighted_alpha_complex_3d_persistence.cpp new file mode 100644 index 00000000..5203548a --- /dev/null +++ b/src/Persistent_cohomology/example/weighted_alpha_complex_3d_persistence.cpp @@ -0,0 +1,263 @@ +/* This file is part of the Gudhi Library. The Gudhi library + * (Geometric Understanding in Higher Dimensions) is a generic C++ + * library for computational topology. + * + * Author(s): Vincent Rouvreau + * + * Copyright (C) 2014 INRIA + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include +#include + +#include +#include +#include +#include +#include + +#include "alpha_complex_3d_helper.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +// Traits +using Kernel = CGAL::Exact_predicates_inexact_constructions_kernel; +using Gt = CGAL::Regular_triangulation_euclidean_traits_3; +using Vb = CGAL::Alpha_shape_vertex_base_3; +using Fb = CGAL::Alpha_shape_cell_base_3; +using Tds = CGAL::Triangulation_data_structure_3; +using Triangulation_3 = CGAL::Regular_triangulation_3; +using Alpha_shape_3 = CGAL::Alpha_shape_3; + +// From file type definition +using Point_3 = Gt::Bare_point; +using Weighted_point_3 = Gt::Weighted_point; + +// filtration with alpha values needed type definition +using Alpha_value_type = Alpha_shape_3::FT; +using Object = CGAL::Object; +using Dispatch = CGAL::Dispatch_output_iterator< + CGAL::cpp11::tuple, + CGAL::cpp11::tuple >, + std::back_insert_iterator< std::vector > > >; +using Cell_handle = Alpha_shape_3::Cell_handle; +using Facet = Alpha_shape_3::Facet; +using Edge_3 = Alpha_shape_3::Edge; +using Vertex_handle = Alpha_shape_3::Vertex_handle; +using Vertex_list = std::list; + +// gudhi type definition +using ST = Gudhi::Simplex_tree; +using Filtration_value = ST::Filtration_value; +using Simplex_tree_vertex = ST::Vertex_handle; +using Alpha_shape_simplex_tree_map = std::map; +using Alpha_shape_simplex_tree_pair = std::pair; +using Simplex_tree_vector_vertex = std::vector< Simplex_tree_vertex >; +using Persistent_cohomology = Gudhi::persistent_cohomology::Persistent_cohomology< + ST, Gudhi::persistent_cohomology::Field_Zp >; + +void usage(char * const progName) { + std::cerr << "Usage: " << progName << + " path_to_file_graph path_to_weight_file coeff_field_characteristic[integer > 0] min_persistence[float >= -1.0]\n"; + exit(-1); +} + +int main(int argc, char * const argv[]) { + // program args management + if (argc != 5) { + std::cerr << "Error: Number of arguments (" << argc << ") is not correct\n"; + usage(argv[0]); + } + + int coeff_field_characteristic = atoi(argv[3]); + Filtration_value min_persistence = strtof(argv[4], nullptr); + + // Read points from file + std::string offInputFile(argv[1]); + // Read the OFF file (input file name given as parameter) and triangulate points + Gudhi::Points_3D_off_reader off_reader(offInputFile); + // Check the read operation was correct + if (!off_reader.is_valid()) { + std::cerr << "Unable to read file " << offInputFile << std::endl; + usage(argv[0]); + } + + // Retrieve the triangulation + std::vector lp = off_reader.get_point_cloud(); + + // Read weights information from file + std::ifstream weights_ifstr(argv[2]); + std::vector wp; + if (weights_ifstr.good()) { + double weight = 0.0; + std::size_t index = 0; + // Attempt read the weight in a double format, return false if it fails + while((weights_ifstr >> weight) && (index < lp.size())) + { + wp.push_back(Weighted_point_3(lp[index], weight)); + index++; + } + if (index != lp.size()) { + std::cerr << "Bad number of weights in file " << argv[2] << std::endl; + usage(argv[0]); + } + } else { + std::cerr << "Unable to read file " << argv[2] << std::endl; + usage(argv[0]); + } + + // alpha shape construction from points. CGAL has a strange behavior in REGULARIZED mode. + Alpha_shape_3 as(lp.begin(), lp.end(), 0, Alpha_shape_3::GENERAL); +#ifdef DEBUG_TRACES + std::cout << "Alpha shape computed in GENERAL mode" << std::endl; +#endif // DEBUG_TRACES + + // filtration with alpha values from alpha shape + std::vector the_objects; + std::vector the_alpha_values; + + Dispatch disp = CGAL::dispatch_output(std::back_inserter(the_objects), + std::back_inserter(the_alpha_values)); + + as.filtration_with_alpha_values(disp); +#ifdef DEBUG_TRACES + std::cout << "filtration_with_alpha_values returns : " << the_objects.size() << " objects" << std::endl; +#endif // DEBUG_TRACES + + Alpha_shape_3::size_type count_vertices = 0; + Alpha_shape_3::size_type count_edges = 0; + Alpha_shape_3::size_type count_facets = 0; + Alpha_shape_3::size_type count_cells = 0; + + // Loop on objects vector + Vertex_list vertex_list; + ST simplex_tree; + Alpha_shape_simplex_tree_map map_cgal_simplex_tree; + std::vector::iterator the_alpha_value_iterator = the_alpha_values.begin(); + int dim_max = 0; + Filtration_value filtration_max = 0.0; + for (auto object_iterator : the_objects) { + // Retrieve Alpha shape vertex list from object + if (const Cell_handle * cell = CGAL::object_cast(&object_iterator)) { + vertex_list = from_cell(*cell); + count_cells++; + if (dim_max < 3) { + // Cell is of dim 3 + dim_max = 3; + } + } else if (const Facet * facet = CGAL::object_cast(&object_iterator)) { + vertex_list = from_facet(*facet); + count_facets++; + if (dim_max < 2) { + // Facet is of dim 2 + dim_max = 2; + } + } else if (const Edge_3 * edge = CGAL::object_cast(&object_iterator)) { + vertex_list = from_edge(*edge); + count_edges++; + if (dim_max < 1) { + // Edge_3 is of dim 1 + dim_max = 1; + } + } else if (const Alpha_shape_3::Vertex_handle * vertex = + CGAL::object_cast(&object_iterator)) { + count_vertices++; + vertex_list = from_vertex(*vertex); + } + // Construction of the vector of simplex_tree vertex from list of alpha_shapes vertex + Simplex_tree_vector_vertex the_simplex_tree; + for (auto the_alpha_shape_vertex : vertex_list) { + Alpha_shape_simplex_tree_map::iterator the_map_iterator = map_cgal_simplex_tree.find(the_alpha_shape_vertex); + if (the_map_iterator == map_cgal_simplex_tree.end()) { + // alpha shape not found + Simplex_tree_vertex vertex = map_cgal_simplex_tree.size(); +#ifdef DEBUG_TRACES + std::cout << "vertex [" << the_alpha_shape_vertex->point() << "] not found - insert " << vertex << std::endl; +#endif // DEBUG_TRACES + the_simplex_tree.push_back(vertex); + map_cgal_simplex_tree.insert(Alpha_shape_simplex_tree_pair(the_alpha_shape_vertex, vertex)); + } else { + // alpha shape found + Simplex_tree_vertex vertex = the_map_iterator->second; +#ifdef DEBUG_TRACES + std::cout << "vertex [" << the_alpha_shape_vertex->point() << "] found in " << vertex << std::endl; +#endif // DEBUG_TRACES + the_simplex_tree.push_back(vertex); + } + } + // Construction of the simplex_tree + Filtration_value filtr = /*std::sqrt*/(*the_alpha_value_iterator); +#ifdef DEBUG_TRACES + std::cout << "filtration = " << filtr << std::endl; +#endif // DEBUG_TRACES + if (filtr > filtration_max) { + filtration_max = filtr; + } + simplex_tree.insert_simplex(the_simplex_tree, filtr); + if (the_alpha_value_iterator != the_alpha_values.end()) + ++the_alpha_value_iterator; + else + std::cout << "This shall not happen" << std::endl; + } + simplex_tree.set_filtration(filtration_max); + simplex_tree.set_dimension(dim_max); + +#ifdef DEBUG_TRACES + std::cout << "vertices \t\t" << count_vertices << std::endl; + std::cout << "edges \t\t" << count_edges << std::endl; + std::cout << "facets \t\t" << count_facets << std::endl; + std::cout << "cells \t\t" << count_cells << std::endl; + + + std::cout << "Information of the Simplex Tree: " << std::endl; + std::cout << " Number of vertices = " << simplex_tree.num_vertices() << " "; + std::cout << " Number of simplices = " << simplex_tree.num_simplices() << std::endl << std::endl; + std::cout << " Dimension = " << simplex_tree.dimension() << " "; + std::cout << " filtration = " << simplex_tree.filtration() << std::endl << std::endl; +#endif // DEBUG_TRACES + +#ifdef DEBUG_TRACES + std::cout << "Iterator on vertices: " << std::endl; + for (auto vertex : simplex_tree.complex_vertex_range()) { + std::cout << vertex << " "; + } +#endif // DEBUG_TRACES + + // Sort the simplices in the order of the filtration + simplex_tree.initialize_filtration(); + + std::cout << "Simplex_tree dim: " << simplex_tree.dimension() << std::endl; + // Compute the persistence diagram of the complex + Persistent_cohomology pcoh(simplex_tree, true); + // initializes the coefficient field for homology + pcoh.init_coefficients(coeff_field_characteristic); + + pcoh.compute_persistent_cohomology(min_persistence); + + pcoh.output_diagram(); + + return 0; +} diff --git a/src/common/doc/main_page.h b/src/common/doc/main_page.h index 34ad1710..0338d3b1 100644 --- a/src/common/doc/main_page.h +++ b/src/common/doc/main_page.h @@ -261,6 +261,8 @@ make \endverbatim * Persistent_cohomology/alpha_complex_3d_persistence.cpp * \li * Persistent_cohomology/exact_alpha_complex_3d_persistence.cpp + * \li + * Persistent_cohomology/weighted_alpha_complex_3d_persistence.cpp * \li * Simplex_tree/example_alpha_shapes_3_simplex_tree_from_off_file.cpp * @@ -354,6 +356,8 @@ make \endverbatim * Persistent_cohomology/rips_persistence_step_by_step.cpp * \li * Persistent_cohomology/exact_alpha_complex_3d_persistence.cpp + * \li + * Persistent_cohomology/weighted_alpha_complex_3d_persistence.cpp * \li * Persistent_cohomology/periodic_alpha_complex_3d_persistence.cpp * \li @@ -399,6 +403,7 @@ make \endverbatim * @example Persistent_cohomology/alpha_complex_persistence.cpp * @example Persistent_cohomology/rips_persistence_via_boundary_matrix.cpp * @example Persistent_cohomology/exact_alpha_complex_3d_persistence.cpp + * @example Persistent_cohomology/weighted_alpha_complex_3d_persistence.cpp * @example Persistent_cohomology/periodic_alpha_complex_3d_persistence.cpp * @example Persistent_cohomology/persistence_from_file.cpp * @example Persistent_cohomology/persistence_from_simple_simplex_tree.cpp -- cgit v1.2.3 From 092b6dacfb638fe9751e464bcd894967926b2744 Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Wed, 8 Mar 2017 08:44:48 +0000 Subject: Add sphere points on the grid example and document it git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/alpha_3d_fix@2177 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: f746ffbf946df64df9221304bbb3eb55e5db6b4f --- data/points/sphere3D_pts_on_grid.off | 17286 +++++++++++++++++++ .../doc/Intro_persistent_cohomology.h | 6 +- 2 files changed, 17288 insertions(+), 4 deletions(-) create mode 100644 data/points/sphere3D_pts_on_grid.off diff --git a/data/points/sphere3D_pts_on_grid.off b/data/points/sphere3D_pts_on_grid.off new file mode 100644 index 00000000..7f562559 --- /dev/null +++ b/data/points/sphere3D_pts_on_grid.off @@ -0,0 +1,17286 @@ +OFF +17284 0 0 +0.44 0.38 0.02 +0.46 0.38 0.02 +0.48 0.38 0.02 +0.5 0.38 0.02 +0.52 0.38 0.02 +0.54 0.38 0.02 +0.56 0.38 0.02 +0.42 0.4 0.02 +0.44 0.4 0.02 +0.46 0.4 0.02 +0.48 0.4 0.02 +0.5 0.4 0.02 +0.52 0.4 0.02 +0.54 0.4 0.02 +0.56 0.4 0.02 +0.58 0.4 0.02 +0.4 0.42 0.02 +0.42 0.42 0.02 +0.44 0.42 0.02 +0.46 0.42 0.02 +0.48 0.42 0.02 +0.5 0.42 0.02 +0.52 0.42 0.02 +0.54 0.42 0.02 +0.56 0.42 0.02 +0.58 0.42 0.02 +0.6 0.42 0.02 +0.38 0.44 0.02 +0.4 0.44 0.02 +0.42 0.44 0.02 +0.44 0.44 0.02 +0.46 0.44 0.02 +0.48 0.44 0.02 +0.5 0.44 0.02 +0.52 0.44 0.02 +0.54 0.44 0.02 +0.56 0.44 0.02 +0.58 0.44 0.02 +0.6 0.44 0.02 +0.62 0.44 0.02 +0.38 0.46 0.02 +0.4 0.46 0.02 +0.42 0.46 0.02 +0.44 0.46 0.02 +0.46 0.46 0.02 +0.48 0.46 0.02 +0.5 0.46 0.02 +0.52 0.46 0.02 +0.54 0.46 0.02 +0.56 0.46 0.02 +0.58 0.46 0.02 +0.6 0.46 0.02 +0.62 0.46 0.02 +0.38 0.48 0.02 +0.4 0.48 0.02 +0.42 0.48 0.02 +0.44 0.48 0.02 +0.46 0.48 0.02 +0.48 0.48 0.02 +0.5 0.48 0.02 +0.52 0.48 0.02 +0.54 0.48 0.02 +0.56 0.48 0.02 +0.58 0.48 0.02 +0.6 0.48 0.02 +0.62 0.48 0.02 +0.38 0.5 0.02 +0.4 0.5 0.02 +0.42 0.5 0.02 +0.44 0.5 0.02 +0.46 0.5 0.02 +0.48 0.5 0.02 +0.5 0.5 0.02 +0.52 0.5 0.02 +0.54 0.5 0.02 +0.56 0.5 0.02 +0.58 0.5 0.02 +0.6 0.5 0.02 +0.62 0.5 0.02 +0.38 0.52 0.02 +0.4 0.52 0.02 +0.42 0.52 0.02 +0.44 0.52 0.02 +0.46 0.52 0.02 +0.48 0.52 0.02 +0.5 0.52 0.02 +0.52 0.52 0.02 +0.54 0.52 0.02 +0.56 0.52 0.02 +0.58 0.52 0.02 +0.6 0.52 0.02 +0.62 0.52 0.02 +0.38 0.54 0.02 +0.4 0.54 0.02 +0.42 0.54 0.02 +0.44 0.54 0.02 +0.46 0.54 0.02 +0.48 0.54 0.02 +0.5 0.54 0.02 +0.52 0.54 0.02 +0.54 0.54 0.02 +0.56 0.54 0.02 +0.58 0.54 0.02 +0.6 0.54 0.02 +0.62 0.54 0.02 +0.38 0.56 0.02 +0.4 0.56 0.02 +0.42 0.56 0.02 +0.44 0.56 0.02 +0.46 0.56 0.02 +0.48 0.56 0.02 +0.5 0.56 0.02 +0.52 0.56 0.02 +0.54 0.56 0.02 +0.56 0.56 0.02 +0.58 0.56 0.02 +0.6 0.56 0.02 +0.62 0.56 0.02 +0.4 0.58 0.02 +0.42 0.58 0.02 +0.44 0.58 0.02 +0.46 0.58 0.02 +0.48 0.58 0.02 +0.5 0.58 0.02 +0.52 0.58 0.02 +0.54 0.58 0.02 +0.56 0.58 0.02 +0.58 0.58 0.02 +0.6 0.58 0.02 +0.42 0.6 0.02 +0.44 0.6 0.02 +0.46 0.6 0.02 +0.48 0.6 0.02 +0.5 0.6 0.02 +0.52 0.6 0.02 +0.54 0.6 0.02 +0.56 0.6 0.02 +0.58 0.6 0.02 +0.44 0.62 0.02 +0.46 0.62 0.02 +0.48 0.62 0.02 +0.5 0.62 0.02 +0.52 0.62 0.02 +0.54 0.62 0.02 +0.56 0.62 0.02 +0.44 0.32 0.04 +0.46 0.32 0.04 +0.48 0.32 0.04 +0.5 0.32 0.04 +0.52 0.32 0.04 +0.54 0.32 0.04 +0.56 0.32 0.04 +0.4 0.34 0.04 +0.42 0.34 0.04 +0.44 0.34 0.04 +0.46 0.34 0.04 +0.48 0.34 0.04 +0.5 0.34 0.04 +0.52 0.34 0.04 +0.54 0.34 0.04 +0.56 0.34 0.04 +0.58 0.34 0.04 +0.6 0.34 0.04 +0.38 0.36 0.04 +0.4 0.36 0.04 +0.42 0.36 0.04 +0.44 0.36 0.04 +0.46 0.36 0.04 +0.48 0.36 0.04 +0.5 0.36 0.04 +0.52 0.36 0.04 +0.54 0.36 0.04 +0.56 0.36 0.04 +0.58 0.36 0.04 +0.6 0.36 0.04 +0.62 0.36 0.04 +0.36 0.38 0.04 +0.38 0.38 0.04 +0.4 0.38 0.04 +0.42 0.38 0.04 +0.44 0.38 0.04 +0.46 0.38 0.04 +0.48 0.38 0.04 +0.5 0.38 0.04 +0.52 0.38 0.04 +0.54 0.38 0.04 +0.56 0.38 0.04 +0.58 0.38 0.04 +0.6 0.38 0.04 +0.62 0.38 0.04 +0.64 0.38 0.04 +0.34 0.4 0.04 +0.36 0.4 0.04 +0.38 0.4 0.04 +0.4 0.4 0.04 +0.42 0.4 0.04 +0.44 0.4 0.04 +0.46 0.4 0.04 +0.48 0.4 0.04 +0.5 0.4 0.04 +0.52 0.4 0.04 +0.54 0.4 0.04 +0.56 0.4 0.04 +0.58 0.4 0.04 +0.6 0.4 0.04 +0.62 0.4 0.04 +0.64 0.4 0.04 +0.66 0.4 0.04 +0.34 0.42 0.04 +0.36 0.42 0.04 +0.38 0.42 0.04 +0.4 0.42 0.04 +0.42 0.42 0.04 +0.44 0.42 0.04 +0.46 0.42 0.04 +0.48 0.42 0.04 +0.5 0.42 0.04 +0.52 0.42 0.04 +0.54 0.42 0.04 +0.56 0.42 0.04 +0.58 0.42 0.04 +0.6 0.42 0.04 +0.62 0.42 0.04 +0.64 0.42 0.04 +0.66 0.42 0.04 +0.32 0.44 0.04 +0.34 0.44 0.04 +0.36 0.44 0.04 +0.38 0.44 0.04 +0.4 0.44 0.04 +0.42 0.44 0.04 +0.44 0.44 0.04 +0.46 0.44 0.04 +0.48 0.44 0.04 +0.5 0.44 0.04 +0.52 0.44 0.04 +0.54 0.44 0.04 +0.56 0.44 0.04 +0.58 0.44 0.04 +0.6 0.44 0.04 +0.62 0.44 0.04 +0.64 0.44 0.04 +0.66 0.44 0.04 +0.68 0.44 0.04 +0.32 0.46 0.04 +0.34 0.46 0.04 +0.36 0.46 0.04 +0.38 0.46 0.04 +0.4 0.46 0.04 +0.42 0.46 0.04 +0.44 0.46 0.04 +0.46 0.46 0.04 +0.48 0.46 0.04 +0.5 0.46 0.04 +0.52 0.46 0.04 +0.54 0.46 0.04 +0.56 0.46 0.04 +0.58 0.46 0.04 +0.6 0.46 0.04 +0.62 0.46 0.04 +0.64 0.46 0.04 +0.66 0.46 0.04 +0.68 0.46 0.04 +0.32 0.48 0.04 +0.34 0.48 0.04 +0.36 0.48 0.04 +0.38 0.48 0.04 +0.4 0.48 0.04 +0.42 0.48 0.04 +0.44 0.48 0.04 +0.46 0.48 0.04 +0.48 0.48 0.04 +0.5 0.48 0.04 +0.52 0.48 0.04 +0.54 0.48 0.04 +0.56 0.48 0.04 +0.58 0.48 0.04 +0.6 0.48 0.04 +0.62 0.48 0.04 +0.64 0.48 0.04 +0.66 0.48 0.04 +0.68 0.48 0.04 +0.32 0.5 0.04 +0.34 0.5 0.04 +0.36 0.5 0.04 +0.38 0.5 0.04 +0.4 0.5 0.04 +0.42 0.5 0.04 +0.44 0.5 0.04 +0.46 0.5 0.04 +0.48 0.5 0.04 +0.5 0.5 0.04 +0.52 0.5 0.04 +0.54 0.5 0.04 +0.56 0.5 0.04 +0.58 0.5 0.04 +0.6 0.5 0.04 +0.62 0.5 0.04 +0.64 0.5 0.04 +0.66 0.5 0.04 +0.68 0.5 0.04 +0.32 0.52 0.04 +0.34 0.52 0.04 +0.36 0.52 0.04 +0.38 0.52 0.04 +0.4 0.52 0.04 +0.42 0.52 0.04 +0.44 0.52 0.04 +0.46 0.52 0.04 +0.48 0.52 0.04 +0.5 0.52 0.04 +0.52 0.52 0.04 +0.54 0.52 0.04 +0.56 0.52 0.04 +0.58 0.52 0.04 +0.6 0.52 0.04 +0.62 0.52 0.04 +0.64 0.52 0.04 +0.66 0.52 0.04 +0.68 0.52 0.04 +0.32 0.54 0.04 +0.34 0.54 0.04 +0.36 0.54 0.04 +0.38 0.54 0.04 +0.4 0.54 0.04 +0.42 0.54 0.04 +0.44 0.54 0.04 +0.46 0.54 0.04 +0.48 0.54 0.04 +0.5 0.54 0.04 +0.52 0.54 0.04 +0.54 0.54 0.04 +0.56 0.54 0.04 +0.58 0.54 0.04 +0.6 0.54 0.04 +0.62 0.54 0.04 +0.64 0.54 0.04 +0.66 0.54 0.04 +0.68 0.54 0.04 +0.32 0.56 0.04 +0.34 0.56 0.04 +0.36 0.56 0.04 +0.38 0.56 0.04 +0.4 0.56 0.04 +0.42 0.56 0.04 +0.44 0.56 0.04 +0.46 0.56 0.04 +0.48 0.56 0.04 +0.5 0.56 0.04 +0.52 0.56 0.04 +0.54 0.56 0.04 +0.56 0.56 0.04 +0.58 0.56 0.04 +0.6 0.56 0.04 +0.62 0.56 0.04 +0.64 0.56 0.04 +0.66 0.56 0.04 +0.68 0.56 0.04 +0.34 0.58 0.04 +0.36 0.58 0.04 +0.38 0.58 0.04 +0.4 0.58 0.04 +0.42 0.58 0.04 +0.44 0.58 0.04 +0.46 0.58 0.04 +0.48 0.58 0.04 +0.5 0.58 0.04 +0.52 0.58 0.04 +0.54 0.58 0.04 +0.56 0.58 0.04 +0.58 0.58 0.04 +0.6 0.58 0.04 +0.62 0.58 0.04 +0.64 0.58 0.04 +0.66 0.58 0.04 +0.34 0.6 0.04 +0.36 0.6 0.04 +0.38 0.6 0.04 +0.4 0.6 0.04 +0.42 0.6 0.04 +0.44 0.6 0.04 +0.46 0.6 0.04 +0.48 0.6 0.04 +0.5 0.6 0.04 +0.52 0.6 0.04 +0.54 0.6 0.04 +0.56 0.6 0.04 +0.58 0.6 0.04 +0.6 0.6 0.04 +0.62 0.6 0.04 +0.64 0.6 0.04 +0.66 0.6 0.04 +0.36 0.62 0.04 +0.38 0.62 0.04 +0.4 0.62 0.04 +0.42 0.62 0.04 +0.44 0.62 0.04 +0.46 0.62 0.04 +0.48 0.62 0.04 +0.5 0.62 0.04 +0.52 0.62 0.04 +0.54 0.62 0.04 +0.56 0.62 0.04 +0.58 0.62 0.04 +0.6 0.62 0.04 +0.62 0.62 0.04 +0.64 0.62 0.04 +0.38 0.64 0.04 +0.4 0.64 0.04 +0.42 0.64 0.04 +0.44 0.64 0.04 +0.46 0.64 0.04 +0.48 0.64 0.04 +0.5 0.64 0.04 +0.52 0.64 0.04 +0.54 0.64 0.04 +0.56 0.64 0.04 +0.58 0.64 0.04 +0.6 0.64 0.04 +0.62 0.64 0.04 +0.4 0.66 0.04 +0.42 0.66 0.04 +0.44 0.66 0.04 +0.46 0.66 0.04 +0.48 0.66 0.04 +0.5 0.66 0.04 +0.52 0.66 0.04 +0.54 0.66 0.04 +0.56 0.66 0.04 +0.58 0.66 0.04 +0.6 0.66 0.04 +0.44 0.68 0.04 +0.46 0.68 0.04 +0.48 0.68 0.04 +0.5 0.68 0.04 +0.52 0.68 0.04 +0.54 0.68 0.04 +0.56 0.68 0.04 +0.42 0.28 0.06 +0.44 0.28 0.06 +0.46 0.28 0.06 +0.48 0.28 0.06 +0.5 0.28 0.06 +0.52 0.28 0.06 +0.54 0.28 0.06 +0.56 0.28 0.06 +0.58 0.28 0.06 +0.38 0.3 0.06 +0.4 0.3 0.06 +0.42 0.3 0.06 +0.44 0.3 0.06 +0.46 0.3 0.06 +0.48 0.3 0.06 +0.5 0.3 0.06 +0.52 0.3 0.06 +0.54 0.3 0.06 +0.56 0.3 0.06 +0.58 0.3 0.06 +0.6 0.3 0.06 +0.62 0.3 0.06 +0.36 0.32 0.06 +0.38 0.32 0.06 +0.4 0.32 0.06 +0.42 0.32 0.06 +0.44 0.32 0.06 +0.46 0.32 0.06 +0.48 0.32 0.06 +0.5 0.32 0.06 +0.52 0.32 0.06 +0.54 0.32 0.06 +0.56 0.32 0.06 +0.58 0.32 0.06 +0.6 0.32 0.06 +0.62 0.32 0.06 +0.64 0.32 0.06 +0.34 0.34 0.06 +0.36 0.34 0.06 +0.38 0.34 0.06 +0.4 0.34 0.06 +0.42 0.34 0.06 +0.44 0.34 0.06 +0.46 0.34 0.06 +0.48 0.34 0.06 +0.5 0.34 0.06 +0.52 0.34 0.06 +0.54 0.34 0.06 +0.56 0.34 0.06 +0.58 0.34 0.06 +0.6 0.34 0.06 +0.62 0.34 0.06 +0.64 0.34 0.06 +0.66 0.34 0.06 +0.32 0.36 0.06 +0.34 0.36 0.06 +0.36 0.36 0.06 +0.38 0.36 0.06 +0.4 0.36 0.06 +0.42 0.36 0.06 +0.44 0.36 0.06 +0.46 0.36 0.06 +0.48 0.36 0.06 +0.5 0.36 0.06 +0.52 0.36 0.06 +0.54 0.36 0.06 +0.56 0.36 0.06 +0.58 0.36 0.06 +0.6 0.36 0.06 +0.62 0.36 0.06 +0.64 0.36 0.06 +0.66 0.36 0.06 +0.68 0.36 0.06 +0.3 0.38 0.06 +0.32 0.38 0.06 +0.34 0.38 0.06 +0.36 0.38 0.06 +0.38 0.38 0.06 +0.4 0.38 0.06 +0.42 0.38 0.06 +0.44 0.38 0.06 +0.46 0.38 0.06 +0.48 0.38 0.06 +0.5 0.38 0.06 +0.52 0.38 0.06 +0.54 0.38 0.06 +0.56 0.38 0.06 +0.58 0.38 0.06 +0.6 0.38 0.06 +0.62 0.38 0.06 +0.64 0.38 0.06 +0.66 0.38 0.06 +0.68 0.38 0.06 +0.7 0.38 0.06 +0.3 0.4 0.06 +0.32 0.4 0.06 +0.34 0.4 0.06 +0.36 0.4 0.06 +0.38 0.4 0.06 +0.4 0.4 0.06 +0.42 0.4 0.06 +0.44 0.4 0.06 +0.46 0.4 0.06 +0.48 0.4 0.06 +0.5 0.4 0.06 +0.52 0.4 0.06 +0.54 0.4 0.06 +0.56 0.4 0.06 +0.58 0.4 0.06 +0.6 0.4 0.06 +0.62 0.4 0.06 +0.64 0.4 0.06 +0.66 0.4 0.06 +0.68 0.4 0.06 +0.7 0.4 0.06 +0.28 0.42 0.06 +0.3 0.42 0.06 +0.32 0.42 0.06 +0.34 0.42 0.06 +0.36 0.42 0.06 +0.38 0.42 0.06 +0.4 0.42 0.06 +0.42 0.42 0.06 +0.44 0.42 0.06 +0.56 0.42 0.06 +0.58 0.42 0.06 +0.6 0.42 0.06 +0.62 0.42 0.06 +0.64 0.42 0.06 +0.66 0.42 0.06 +0.68 0.42 0.06 +0.7 0.42 0.06 +0.72 0.42 0.06 +0.28 0.44 0.06 +0.3 0.44 0.06 +0.32 0.44 0.06 +0.34 0.44 0.06 +0.36 0.44 0.06 +0.38 0.44 0.06 +0.4 0.44 0.06 +0.42 0.44 0.06 +0.58 0.44 0.06 +0.6 0.44 0.06 +0.62 0.44 0.06 +0.64 0.44 0.06 +0.66 0.44 0.06 +0.68 0.44 0.06 +0.7 0.44 0.06 +0.72 0.44 0.06 +0.28 0.46 0.06 +0.3 0.46 0.06 +0.32 0.46 0.06 +0.34 0.46 0.06 +0.36 0.46 0.06 +0.38 0.46 0.06 +0.4 0.46 0.06 +0.6 0.46 0.06 +0.62 0.46 0.06 +0.64 0.46 0.06 +0.66 0.46 0.06 +0.68 0.46 0.06 +0.7 0.46 0.06 +0.72 0.46 0.06 +0.28 0.48 0.06 +0.3 0.48 0.06 +0.32 0.48 0.06 +0.34 0.48 0.06 +0.36 0.48 0.06 +0.38 0.48 0.06 +0.4 0.48 0.06 +0.6 0.48 0.06 +0.62 0.48 0.06 +0.64 0.48 0.06 +0.66 0.48 0.06 +0.68 0.48 0.06 +0.7 0.48 0.06 +0.72 0.48 0.06 +0.28 0.5 0.06 +0.3 0.5 0.06 +0.32 0.5 0.06 +0.34 0.5 0.06 +0.36 0.5 0.06 +0.38 0.5 0.06 +0.4 0.5 0.06 +0.6 0.5 0.06 +0.62 0.5 0.06 +0.64 0.5 0.06 +0.66 0.5 0.06 +0.68 0.5 0.06 +0.7 0.5 0.06 +0.72 0.5 0.06 +0.28 0.52 0.06 +0.3 0.52 0.06 +0.32 0.52 0.06 +0.34 0.52 0.06 +0.36 0.52 0.06 +0.38 0.52 0.06 +0.4 0.52 0.06 +0.6 0.52 0.06 +0.62 0.52 0.06 +0.64 0.52 0.06 +0.66 0.52 0.06 +0.68 0.52 0.06 +0.7 0.52 0.06 +0.72 0.52 0.06 +0.28 0.54 0.06 +0.3 0.54 0.06 +0.32 0.54 0.06 +0.34 0.54 0.06 +0.36 0.54 0.06 +0.38 0.54 0.06 +0.4 0.54 0.06 +0.6 0.54 0.06 +0.62 0.54 0.06 +0.64 0.54 0.06 +0.66 0.54 0.06 +0.68 0.54 0.06 +0.7 0.54 0.06 +0.72 0.54 0.06 +0.28 0.56 0.06 +0.3 0.56 0.06 +0.32 0.56 0.06 +0.34 0.56 0.06 +0.36 0.56 0.06 +0.38 0.56 0.06 +0.4 0.56 0.06 +0.42 0.56 0.06 +0.58 0.56 0.06 +0.6 0.56 0.06 +0.62 0.56 0.06 +0.64 0.56 0.06 +0.66 0.56 0.06 +0.68 0.56 0.06 +0.7 0.56 0.06 +0.72 0.56 0.06 +0.28 0.58 0.06 +0.3 0.58 0.06 +0.32 0.58 0.06 +0.34 0.58 0.06 +0.36 0.58 0.06 +0.38 0.58 0.06 +0.4 0.58 0.06 +0.42 0.58 0.06 +0.44 0.58 0.06 +0.56 0.58 0.06 +0.58 0.58 0.06 +0.6 0.58 0.06 +0.62 0.58 0.06 +0.64 0.58 0.06 +0.66 0.58 0.06 +0.68 0.58 0.06 +0.7 0.58 0.06 +0.72 0.58 0.06 +0.3 0.6 0.06 +0.32 0.6 0.06 +0.34 0.6 0.06 +0.36 0.6 0.06 +0.38 0.6 0.06 +0.4 0.6 0.06 +0.42 0.6 0.06 +0.44 0.6 0.06 +0.46 0.6 0.06 +0.48 0.6 0.06 +0.5 0.6 0.06 +0.52 0.6 0.06 +0.54 0.6 0.06 +0.56 0.6 0.06 +0.58 0.6 0.06 +0.6 0.6 0.06 +0.62 0.6 0.06 +0.64 0.6 0.06 +0.66 0.6 0.06 +0.68 0.6 0.06 +0.7 0.6 0.06 +0.3 0.62 0.06 +0.32 0.62 0.06 +0.34 0.62 0.06 +0.36 0.62 0.06 +0.38 0.62 0.06 +0.4 0.62 0.06 +0.42 0.62 0.06 +0.44 0.62 0.06 +0.46 0.62 0.06 +0.48 0.62 0.06 +0.5 0.62 0.06 +0.52 0.62 0.06 +0.54 0.62 0.06 +0.56 0.62 0.06 +0.58 0.62 0.06 +0.6 0.62 0.06 +0.62 0.62 0.06 +0.64 0.62 0.06 +0.66 0.62 0.06 +0.68 0.62 0.06 +0.7 0.62 0.06 +0.32 0.64 0.06 +0.34 0.64 0.06 +0.36 0.64 0.06 +0.38 0.64 0.06 +0.4 0.64 0.06 +0.42 0.64 0.06 +0.44 0.64 0.06 +0.46 0.64 0.06 +0.48 0.64 0.06 +0.5 0.64 0.06 +0.52 0.64 0.06 +0.54 0.64 0.06 +0.56 0.64 0.06 +0.58 0.64 0.06 +0.6 0.64 0.06 +0.62 0.64 0.06 +0.64 0.64 0.06 +0.66 0.64 0.06 +0.68 0.64 0.06 +0.34 0.66 0.06 +0.36 0.66 0.06 +0.38 0.66 0.06 +0.4 0.66 0.06 +0.42 0.66 0.06 +0.44 0.66 0.06 +0.46 0.66 0.06 +0.48 0.66 0.06 +0.5 0.66 0.06 +0.52 0.66 0.06 +0.54 0.66 0.06 +0.56 0.66 0.06 +0.58 0.66 0.06 +0.6 0.66 0.06 +0.62 0.66 0.06 +0.64 0.66 0.06 +0.66 0.66 0.06 +0.36 0.68 0.06 +0.38 0.68 0.06 +0.4 0.68 0.06 +0.42 0.68 0.06 +0.44 0.68 0.06 +0.46 0.68 0.06 +0.48 0.68 0.06 +0.5 0.68 0.06 +0.52 0.68 0.06 +0.54 0.68 0.06 +0.56 0.68 0.06 +0.58 0.68 0.06 +0.6 0.68 0.06 +0.62 0.68 0.06 +0.64 0.68 0.06 +0.38 0.7 0.06 +0.4 0.7 0.06 +0.42 0.7 0.06 +0.44 0.7 0.06 +0.46 0.7 0.06 +0.48 0.7 0.06 +0.5 0.7 0.06 +0.52 0.7 0.06 +0.54 0.7 0.06 +0.56 0.7 0.06 +0.58 0.7 0.06 +0.6 0.7 0.06 +0.62 0.7 0.06 +0.42 0.72 0.06 +0.44 0.72 0.06 +0.46 0.72 0.06 +0.48 0.72 0.06 +0.5 0.72 0.06 +0.52 0.72 0.06 +0.54 0.72 0.06 +0.56 0.72 0.06 +0.58 0.72 0.06 +0.44 0.24 0.08 +0.46 0.24 0.08 +0.48 0.24 0.08 +0.5 0.24 0.08 +0.52 0.24 0.08 +0.54 0.24 0.08 +0.56 0.24 0.08 +0.38 0.26 0.08 +0.4 0.26 0.08 +0.42 0.26 0.08 +0.44 0.26 0.08 +0.46 0.26 0.08 +0.48 0.26 0.08 +0.5 0.26 0.08 +0.52 0.26 0.08 +0.54 0.26 0.08 +0.56 0.26 0.08 +0.58 0.26 0.08 +0.6 0.26 0.08 +0.62 0.26 0.08 +0.36 0.28 0.08 +0.38 0.28 0.08 +0.4 0.28 0.08 +0.42 0.28 0.08 +0.44 0.28 0.08 +0.46 0.28 0.08 +0.48 0.28 0.08 +0.5 0.28 0.08 +0.52 0.28 0.08 +0.54 0.28 0.08 +0.56 0.28 0.08 +0.58 0.28 0.08 +0.6 0.28 0.08 +0.62 0.28 0.08 +0.64 0.28 0.08 +0.32 0.3 0.08 +0.34 0.3 0.08 +0.36 0.3 0.08 +0.38 0.3 0.08 +0.4 0.3 0.08 +0.42 0.3 0.08 +0.44 0.3 0.08 +0.46 0.3 0.08 +0.48 0.3 0.08 +0.5 0.3 0.08 +0.52 0.3 0.08 +0.54 0.3 0.08 +0.56 0.3 0.08 +0.58 0.3 0.08 +0.6 0.3 0.08 +0.62 0.3 0.08 +0.64 0.3 0.08 +0.66 0.3 0.08 +0.68 0.3 0.08 +0.3 0.32 0.08 +0.32 0.32 0.08 +0.34 0.32 0.08 +0.36 0.32 0.08 +0.38 0.32 0.08 +0.4 0.32 0.08 +0.42 0.32 0.08 +0.44 0.32 0.08 +0.46 0.32 0.08 +0.48 0.32 0.08 +0.5 0.32 0.08 +0.52 0.32 0.08 +0.54 0.32 0.08 +0.56 0.32 0.08 +0.58 0.32 0.08 +0.6 0.32 0.08 +0.62 0.32 0.08 +0.64 0.32 0.08 +0.66 0.32 0.08 +0.68 0.32 0.08 +0.7 0.32 0.08 +0.3 0.34 0.08 +0.32 0.34 0.08 +0.34 0.34 0.08 +0.36 0.34 0.08 +0.38 0.34 0.08 +0.4 0.34 0.08 +0.42 0.34 0.08 +0.44 0.34 0.08 +0.46 0.34 0.08 +0.54 0.34 0.08 +0.56 0.34 0.08 +0.58 0.34 0.08 +0.6 0.34 0.08 +0.62 0.34 0.08 +0.64 0.34 0.08 +0.66 0.34 0.08 +0.68 0.34 0.08 +0.7 0.34 0.08 +0.28 0.36 0.08 +0.3 0.36 0.08 +0.32 0.36 0.08 +0.34 0.36 0.08 +0.36 0.36 0.08 +0.38 0.36 0.08 +0.4 0.36 0.08 +0.6 0.36 0.08 +0.62 0.36 0.08 +0.64 0.36 0.08 +0.66 0.36 0.08 +0.68 0.36 0.08 +0.7 0.36 0.08 +0.72 0.36 0.08 +0.26 0.38 0.08 +0.28 0.38 0.08 +0.3 0.38 0.08 +0.32 0.38 0.08 +0.34 0.38 0.08 +0.36 0.38 0.08 +0.38 0.38 0.08 +0.62 0.38 0.08 +0.64 0.38 0.08 +0.66 0.38 0.08 +0.68 0.38 0.08 +0.7 0.38 0.08 +0.72 0.38 0.08 +0.74 0.38 0.08 +0.26 0.4 0.08 +0.28 0.4 0.08 +0.3 0.4 0.08 +0.32 0.4 0.08 +0.34 0.4 0.08 +0.36 0.4 0.08 +0.64 0.4 0.08 +0.66 0.4 0.08 +0.68 0.4 0.08 +0.7 0.4 0.08 +0.72 0.4 0.08 +0.74 0.4 0.08 +0.26 0.42 0.08 +0.28 0.42 0.08 +0.3 0.42 0.08 +0.32 0.42 0.08 +0.34 0.42 0.08 +0.66 0.42 0.08 +0.68 0.42 0.08 +0.7 0.42 0.08 +0.72 0.42 0.08 +0.74 0.42 0.08 +0.24 0.44 0.08 +0.26 0.44 0.08 +0.28 0.44 0.08 +0.3 0.44 0.08 +0.32 0.44 0.08 +0.34 0.44 0.08 +0.66 0.44 0.08 +0.68 0.44 0.08 +0.7 0.44 0.08 +0.72 0.44 0.08 +0.74 0.44 0.08 +0.76 0.44 0.08 +0.24 0.46 0.08 +0.26 0.46 0.08 +0.28 0.46 0.08 +0.3 0.46 0.08 +0.32 0.46 0.08 +0.34 0.46 0.08 +0.66 0.46 0.08 +0.68 0.46 0.08 +0.7 0.46 0.08 +0.72 0.46 0.08 +0.74 0.46 0.08 +0.76 0.46 0.08 +0.24 0.48 0.08 +0.26 0.48 0.08 +0.28 0.48 0.08 +0.3 0.48 0.08 +0.32 0.48 0.08 +0.68 0.48 0.08 +0.7 0.48 0.08 +0.72 0.48 0.08 +0.74 0.48 0.08 +0.76 0.48 0.08 +0.24 0.5 0.08 +0.26 0.5 0.08 +0.28 0.5 0.08 +0.3 0.5 0.08 +0.32 0.5 0.08 +0.68 0.5 0.08 +0.7 0.5 0.08 +0.72 0.5 0.08 +0.74 0.5 0.08 +0.76 0.5 0.08 +0.24 0.52 0.08 +0.26 0.52 0.08 +0.28 0.52 0.08 +0.3 0.52 0.08 +0.32 0.52 0.08 +0.68 0.52 0.08 +0.7 0.52 0.08 +0.72 0.52 0.08 +0.74 0.52 0.08 +0.76 0.52 0.08 +0.24 0.54 0.08 +0.26 0.54 0.08 +0.28 0.54 0.08 +0.3 0.54 0.08 +0.32 0.54 0.08 +0.34 0.54 0.08 +0.66 0.54 0.08 +0.68 0.54 0.08 +0.7 0.54 0.08 +0.72 0.54 0.08 +0.74 0.54 0.08 +0.76 0.54 0.08 +0.24 0.56 0.08 +0.26 0.56 0.08 +0.28 0.56 0.08 +0.3 0.56 0.08 +0.32 0.56 0.08 +0.34 0.56 0.08 +0.66 0.56 0.08 +0.68 0.56 0.08 +0.7 0.56 0.08 +0.72 0.56 0.08 +0.74 0.56 0.08 +0.76 0.56 0.08 +0.26 0.58 0.08 +0.28 0.58 0.08 +0.3 0.58 0.08 +0.32 0.58 0.08 +0.34 0.58 0.08 +0.66 0.58 0.08 +0.68 0.58 0.08 +0.7 0.58 0.08 +0.72 0.58 0.08 +0.74 0.58 0.08 +0.26 0.6 0.08 +0.28 0.6 0.08 +0.3 0.6 0.08 +0.32 0.6 0.08 +0.34 0.6 0.08 +0.36 0.6 0.08 +0.64 0.6 0.08 +0.66 0.6 0.08 +0.68 0.6 0.08 +0.7 0.6 0.08 +0.72 0.6 0.08 +0.74 0.6 0.08 +0.26 0.62 0.08 +0.28 0.62 0.08 +0.3 0.62 0.08 +0.32 0.62 0.08 +0.34 0.62 0.08 +0.36 0.62 0.08 +0.38 0.62 0.08 +0.62 0.62 0.08 +0.64 0.62 0.08 +0.66 0.62 0.08 +0.68 0.62 0.08 +0.7 0.62 0.08 +0.72 0.62 0.08 +0.74 0.62 0.08 +0.28 0.64 0.08 +0.3 0.64 0.08 +0.32 0.64 0.08 +0.34 0.64 0.08 +0.36 0.64 0.08 +0.38 0.64 0.08 +0.4 0.64 0.08 +0.6 0.64 0.08 +0.62 0.64 0.08 +0.64 0.64 0.08 +0.66 0.64 0.08 +0.68 0.64 0.08 +0.7 0.64 0.08 +0.72 0.64 0.08 +0.3 0.66 0.08 +0.32 0.66 0.08 +0.34 0.66 0.08 +0.36 0.66 0.08 +0.38 0.66 0.08 +0.4 0.66 0.08 +0.42 0.66 0.08 +0.44 0.66 0.08 +0.46 0.66 0.08 +0.54 0.66 0.08 +0.56 0.66 0.08 +0.58 0.66 0.08 +0.6 0.66 0.08 +0.62 0.66 0.08 +0.64 0.66 0.08 +0.66 0.66 0.08 +0.68 0.66 0.08 +0.7 0.66 0.08 +0.3 0.68 0.08 +0.32 0.68 0.08 +0.34 0.68 0.08 +0.36 0.68 0.08 +0.38 0.68 0.08 +0.4 0.68 0.08 +0.42 0.68 0.08 +0.44 0.68 0.08 +0.46 0.68 0.08 +0.48 0.68 0.08 +0.5 0.68 0.08 +0.52 0.68 0.08 +0.54 0.68 0.08 +0.56 0.68 0.08 +0.58 0.68 0.08 +0.6 0.68 0.08 +0.62 0.68 0.08 +0.64 0.68 0.08 +0.66 0.68 0.08 +0.68 0.68 0.08 +0.7 0.68 0.08 +0.32 0.7 0.08 +0.34 0.7 0.08 +0.36 0.7 0.08 +0.38 0.7 0.08 +0.4 0.7 0.08 +0.42 0.7 0.08 +0.44 0.7 0.08 +0.46 0.7 0.08 +0.48 0.7 0.08 +0.5 0.7 0.08 +0.52 0.7 0.08 +0.54 0.7 0.08 +0.56 0.7 0.08 +0.58 0.7 0.08 +0.6 0.7 0.08 +0.62 0.7 0.08 +0.64 0.7 0.08 +0.66 0.7 0.08 +0.68 0.7 0.08 +0.36 0.72 0.08 +0.38 0.72 0.08 +0.4 0.72 0.08 +0.42 0.72 0.08 +0.44 0.72 0.08 +0.46 0.72 0.08 +0.48 0.72 0.08 +0.5 0.72 0.08 +0.52 0.72 0.08 +0.54 0.72 0.08 +0.56 0.72 0.08 +0.58 0.72 0.08 +0.6 0.72 0.08 +0.62 0.72 0.08 +0.64 0.72 0.08 +0.38 0.74 0.08 +0.4 0.74 0.08 +0.42 0.74 0.08 +0.44 0.74 0.08 +0.46 0.74 0.08 +0.48 0.74 0.08 +0.5 0.74 0.08 +0.52 0.74 0.08 +0.54 0.74 0.08 +0.56 0.74 0.08 +0.58 0.74 0.08 +0.6 0.74 0.08 +0.62 0.74 0.08 +0.44 0.76 0.08 +0.46 0.76 0.08 +0.48 0.76 0.08 +0.5 0.76 0.08 +0.52 0.76 0.08 +0.54 0.76 0.08 +0.56 0.76 0.08 +0.4 0.22 0.1 +0.42 0.22 0.1 +0.44 0.22 0.1 +0.46 0.22 0.1 +0.48 0.22 0.1 +0.5 0.22 0.1 +0.52 0.22 0.1 +0.54 0.22 0.1 +0.56 0.22 0.1 +0.58 0.22 0.1 +0.6 0.22 0.1 +0.36 0.24 0.1 +0.38 0.24 0.1 +0.4 0.24 0.1 +0.42 0.24 0.1 +0.44 0.24 0.1 +0.46 0.24 0.1 +0.48 0.24 0.1 +0.5 0.24 0.1 +0.52 0.24 0.1 +0.54 0.24 0.1 +0.56 0.24 0.1 +0.58 0.24 0.1 +0.6 0.24 0.1 +0.62 0.24 0.1 +0.64 0.24 0.1 +0.34 0.26 0.1 +0.36 0.26 0.1 +0.38 0.26 0.1 +0.4 0.26 0.1 +0.42 0.26 0.1 +0.44 0.26 0.1 +0.46 0.26 0.1 +0.48 0.26 0.1 +0.5 0.26 0.1 +0.52 0.26 0.1 +0.54 0.26 0.1 +0.56 0.26 0.1 +0.58 0.26 0.1 +0.6 0.26 0.1 +0.62 0.26 0.1 +0.64 0.26 0.1 +0.66 0.26 0.1 +0.3 0.28 0.1 +0.32 0.28 0.1 +0.34 0.28 0.1 +0.36 0.28 0.1 +0.38 0.28 0.1 +0.4 0.28 0.1 +0.42 0.28 0.1 +0.44 0.28 0.1 +0.46 0.28 0.1 +0.48 0.28 0.1 +0.5 0.28 0.1 +0.52 0.28 0.1 +0.54 0.28 0.1 +0.56 0.28 0.1 +0.58 0.28 0.1 +0.6 0.28 0.1 +0.62 0.28 0.1 +0.64 0.28 0.1 +0.66 0.28 0.1 +0.68 0.28 0.1 +0.7 0.28 0.1 +0.28 0.3 0.1 +0.3 0.3 0.1 +0.32 0.3 0.1 +0.34 0.3 0.1 +0.36 0.3 0.1 +0.38 0.3 0.1 +0.4 0.3 0.1 +0.42 0.3 0.1 +0.44 0.3 0.1 +0.56 0.3 0.1 +0.58 0.3 0.1 +0.6 0.3 0.1 +0.62 0.3 0.1 +0.64 0.3 0.1 +0.66 0.3 0.1 +0.68 0.3 0.1 +0.7 0.3 0.1 +0.72 0.3 0.1 +0.28 0.32 0.1 +0.3 0.32 0.1 +0.32 0.32 0.1 +0.34 0.32 0.1 +0.36 0.32 0.1 +0.38 0.32 0.1 +0.62 0.32 0.1 +0.64 0.32 0.1 +0.66 0.32 0.1 +0.68 0.32 0.1 +0.7 0.32 0.1 +0.72 0.32 0.1 +0.26 0.34 0.1 +0.28 0.34 0.1 +0.3 0.34 0.1 +0.32 0.34 0.1 +0.34 0.34 0.1 +0.36 0.34 0.1 +0.64 0.34 0.1 +0.66 0.34 0.1 +0.68 0.34 0.1 +0.7 0.34 0.1 +0.72 0.34 0.1 +0.74 0.34 0.1 +0.24 0.36 0.1 +0.26 0.36 0.1 +0.28 0.36 0.1 +0.3 0.36 0.1 +0.32 0.36 0.1 +0.34 0.36 0.1 +0.66 0.36 0.1 +0.68 0.36 0.1 +0.7 0.36 0.1 +0.72 0.36 0.1 +0.74 0.36 0.1 +0.76 0.36 0.1 +0.24 0.38 0.1 +0.26 0.38 0.1 +0.28 0.38 0.1 +0.3 0.38 0.1 +0.32 0.38 0.1 +0.68 0.38 0.1 +0.7 0.38 0.1 +0.72 0.38 0.1 +0.74 0.38 0.1 +0.76 0.38 0.1 +0.22 0.4 0.1 +0.24 0.4 0.1 +0.26 0.4 0.1 +0.28 0.4 0.1 +0.3 0.4 0.1 +0.7 0.4 0.1 +0.72 0.4 0.1 +0.74 0.4 0.1 +0.76 0.4 0.1 +0.78 0.4 0.1 +0.22 0.42 0.1 +0.24 0.42 0.1 +0.26 0.42 0.1 +0.28 0.42 0.1 +0.3 0.42 0.1 +0.7 0.42 0.1 +0.72 0.42 0.1 +0.74 0.42 0.1 +0.76 0.42 0.1 +0.78 0.42 0.1 +0.22 0.44 0.1 +0.24 0.44 0.1 +0.26 0.44 0.1 +0.28 0.44 0.1 +0.3 0.44 0.1 +0.7 0.44 0.1 +0.72 0.44 0.1 +0.74 0.44 0.1 +0.76 0.44 0.1 +0.78 0.44 0.1 +0.22 0.46 0.1 +0.24 0.46 0.1 +0.26 0.46 0.1 +0.28 0.46 0.1 +0.72 0.46 0.1 +0.74 0.46 0.1 +0.76 0.46 0.1 +0.78 0.46 0.1 +0.22 0.48 0.1 +0.24 0.48 0.1 +0.26 0.48 0.1 +0.28 0.48 0.1 +0.72 0.48 0.1 +0.74 0.48 0.1 +0.76 0.48 0.1 +0.78 0.48 0.1 +0.22 0.5 0.1 +0.24 0.5 0.1 +0.26 0.5 0.1 +0.28 0.5 0.1 +0.72 0.5 0.1 +0.74 0.5 0.1 +0.76 0.5 0.1 +0.78 0.5 0.1 +0.22 0.52 0.1 +0.24 0.52 0.1 +0.26 0.52 0.1 +0.28 0.52 0.1 +0.72 0.52 0.1 +0.74 0.52 0.1 +0.76 0.52 0.1 +0.78 0.52 0.1 +0.22 0.54 0.1 +0.24 0.54 0.1 +0.26 0.54 0.1 +0.28 0.54 0.1 +0.72 0.54 0.1 +0.74 0.54 0.1 +0.76 0.54 0.1 +0.78 0.54 0.1 +0.22 0.56 0.1 +0.24 0.56 0.1 +0.26 0.56 0.1 +0.28 0.56 0.1 +0.3 0.56 0.1 +0.7 0.56 0.1 +0.72 0.56 0.1 +0.74 0.56 0.1 +0.76 0.56 0.1 +0.78 0.56 0.1 +0.22 0.58 0.1 +0.24 0.58 0.1 +0.26 0.58 0.1 +0.28 0.58 0.1 +0.3 0.58 0.1 +0.7 0.58 0.1 +0.72 0.58 0.1 +0.74 0.58 0.1 +0.76 0.58 0.1 +0.78 0.58 0.1 +0.22 0.6 0.1 +0.24 0.6 0.1 +0.26 0.6 0.1 +0.28 0.6 0.1 +0.3 0.6 0.1 +0.7 0.6 0.1 +0.72 0.6 0.1 +0.74 0.6 0.1 +0.76 0.6 0.1 +0.78 0.6 0.1 +0.24 0.62 0.1 +0.26 0.62 0.1 +0.28 0.62 0.1 +0.3 0.62 0.1 +0.32 0.62 0.1 +0.68 0.62 0.1 +0.7 0.62 0.1 +0.72 0.62 0.1 +0.74 0.62 0.1 +0.76 0.62 0.1 +0.24 0.64 0.1 +0.26 0.64 0.1 +0.28 0.64 0.1 +0.3 0.64 0.1 +0.32 0.64 0.1 +0.34 0.64 0.1 +0.66 0.64 0.1 +0.68 0.64 0.1 +0.7 0.64 0.1 +0.72 0.64 0.1 +0.74 0.64 0.1 +0.76 0.64 0.1 +0.26 0.66 0.1 +0.28 0.66 0.1 +0.3 0.66 0.1 +0.32 0.66 0.1 +0.34 0.66 0.1 +0.36 0.66 0.1 +0.64 0.66 0.1 +0.66 0.66 0.1 +0.68 0.66 0.1 +0.7 0.66 0.1 +0.72 0.66 0.1 +0.74 0.66 0.1 +0.28 0.68 0.1 +0.3 0.68 0.1 +0.32 0.68 0.1 +0.34 0.68 0.1 +0.36 0.68 0.1 +0.38 0.68 0.1 +0.62 0.68 0.1 +0.64 0.68 0.1 +0.66 0.68 0.1 +0.68 0.68 0.1 +0.7 0.68 0.1 +0.72 0.68 0.1 +0.28 0.7 0.1 +0.3 0.7 0.1 +0.32 0.7 0.1 +0.34 0.7 0.1 +0.36 0.7 0.1 +0.38 0.7 0.1 +0.4 0.7 0.1 +0.42 0.7 0.1 +0.44 0.7 0.1 +0.56 0.7 0.1 +0.58 0.7 0.1 +0.6 0.7 0.1 +0.62 0.7 0.1 +0.64 0.7 0.1 +0.66 0.7 0.1 +0.68 0.7 0.1 +0.7 0.7 0.1 +0.72 0.7 0.1 +0.3 0.72 0.1 +0.32 0.72 0.1 +0.34 0.72 0.1 +0.36 0.72 0.1 +0.38 0.72 0.1 +0.4 0.72 0.1 +0.42 0.72 0.1 +0.44 0.72 0.1 +0.46 0.72 0.1 +0.48 0.72 0.1 +0.5 0.72 0.1 +0.52 0.72 0.1 +0.54 0.72 0.1 +0.56 0.72 0.1 +0.58 0.72 0.1 +0.6 0.72 0.1 +0.62 0.72 0.1 +0.64 0.72 0.1 +0.66 0.72 0.1 +0.68 0.72 0.1 +0.7 0.72 0.1 +0.34 0.74 0.1 +0.36 0.74 0.1 +0.38 0.74 0.1 +0.4 0.74 0.1 +0.42 0.74 0.1 +0.44 0.74 0.1 +0.46 0.74 0.1 +0.48 0.74 0.1 +0.5 0.74 0.1 +0.52 0.74 0.1 +0.54 0.74 0.1 +0.56 0.74 0.1 +0.58 0.74 0.1 +0.6 0.74 0.1 +0.62 0.74 0.1 +0.64 0.74 0.1 +0.66 0.74 0.1 +0.36 0.76 0.1 +0.38 0.76 0.1 +0.4 0.76 0.1 +0.42 0.76 0.1 +0.44 0.76 0.1 +0.46 0.76 0.1 +0.48 0.76 0.1 +0.5 0.76 0.1 +0.52 0.76 0.1 +0.54 0.76 0.1 +0.56 0.76 0.1 +0.58 0.76 0.1 +0.6 0.76 0.1 +0.62 0.76 0.1 +0.64 0.76 0.1 +0.4 0.78 0.1 +0.42 0.78 0.1 +0.44 0.78 0.1 +0.46 0.78 0.1 +0.48 0.78 0.1 +0.5 0.78 0.1 +0.52 0.78 0.1 +0.54 0.78 0.1 +0.56 0.78 0.1 +0.58 0.78 0.1 +0.6 0.78 0.1 +0.46 0.18 0.12 +0.48 0.18 0.12 +0.5 0.18 0.12 +0.52 0.18 0.12 +0.54 0.18 0.12 +0.38 0.2 0.12 +0.4 0.2 0.12 +0.42 0.2 0.12 +0.44 0.2 0.12 +0.46 0.2 0.12 +0.48 0.2 0.12 +0.5 0.2 0.12 +0.52 0.2 0.12 +0.54 0.2 0.12 +0.56 0.2 0.12 +0.58 0.2 0.12 +0.6 0.2 0.12 +0.62 0.2 0.12 +0.34 0.22 0.12 +0.36 0.22 0.12 +0.38 0.22 0.12 +0.4 0.22 0.12 +0.42 0.22 0.12 +0.44 0.22 0.12 +0.46 0.22 0.12 +0.48 0.22 0.12 +0.5 0.22 0.12 +0.52 0.22 0.12 +0.54 0.22 0.12 +0.56 0.22 0.12 +0.58 0.22 0.12 +0.6 0.22 0.12 +0.62 0.22 0.12 +0.64 0.22 0.12 +0.66 0.22 0.12 +0.32 0.24 0.12 +0.34 0.24 0.12 +0.36 0.24 0.12 +0.38 0.24 0.12 +0.4 0.24 0.12 +0.42 0.24 0.12 +0.44 0.24 0.12 +0.46 0.24 0.12 +0.48 0.24 0.12 +0.5 0.24 0.12 +0.52 0.24 0.12 +0.54 0.24 0.12 +0.56 0.24 0.12 +0.58 0.24 0.12 +0.6 0.24 0.12 +0.62 0.24 0.12 +0.64 0.24 0.12 +0.66 0.24 0.12 +0.68 0.24 0.12 +0.3 0.26 0.12 +0.32 0.26 0.12 +0.34 0.26 0.12 +0.36 0.26 0.12 +0.38 0.26 0.12 +0.4 0.26 0.12 +0.42 0.26 0.12 +0.44 0.26 0.12 +0.46 0.26 0.12 +0.54 0.26 0.12 +0.56 0.26 0.12 +0.58 0.26 0.12 +0.6 0.26 0.12 +0.62 0.26 0.12 +0.64 0.26 0.12 +0.66 0.26 0.12 +0.68 0.26 0.12 +0.7 0.26 0.12 +0.28 0.28 0.12 +0.3 0.28 0.12 +0.32 0.28 0.12 +0.34 0.28 0.12 +0.36 0.28 0.12 +0.38 0.28 0.12 +0.4 0.28 0.12 +0.6 0.28 0.12 +0.62 0.28 0.12 +0.64 0.28 0.12 +0.66 0.28 0.12 +0.68 0.28 0.12 +0.7 0.28 0.12 +0.72 0.28 0.12 +0.26 0.3 0.12 +0.28 0.3 0.12 +0.3 0.3 0.12 +0.32 0.3 0.12 +0.34 0.3 0.12 +0.36 0.3 0.12 +0.64 0.3 0.12 +0.66 0.3 0.12 +0.68 0.3 0.12 +0.7 0.3 0.12 +0.72 0.3 0.12 +0.74 0.3 0.12 +0.24 0.32 0.12 +0.26 0.32 0.12 +0.28 0.32 0.12 +0.3 0.32 0.12 +0.32 0.32 0.12 +0.68 0.32 0.12 +0.7 0.32 0.12 +0.72 0.32 0.12 +0.74 0.32 0.12 +0.76 0.32 0.12 +0.22 0.34 0.12 +0.24 0.34 0.12 +0.26 0.34 0.12 +0.28 0.34 0.12 +0.3 0.34 0.12 +0.7 0.34 0.12 +0.72 0.34 0.12 +0.74 0.34 0.12 +0.76 0.34 0.12 +0.78 0.34 0.12 +0.22 0.36 0.12 +0.24 0.36 0.12 +0.26 0.36 0.12 +0.28 0.36 0.12 +0.3 0.36 0.12 +0.7 0.36 0.12 +0.72 0.36 0.12 +0.74 0.36 0.12 +0.76 0.36 0.12 +0.78 0.36 0.12 +0.2 0.38 0.12 +0.22 0.38 0.12 +0.24 0.38 0.12 +0.26 0.38 0.12 +0.28 0.38 0.12 +0.72 0.38 0.12 +0.74 0.38 0.12 +0.76 0.38 0.12 +0.78 0.38 0.12 +0.8 0.38 0.12 +0.2 0.4 0.12 +0.22 0.4 0.12 +0.24 0.4 0.12 +0.26 0.4 0.12 +0.28 0.4 0.12 +0.72 0.4 0.12 +0.74 0.4 0.12 +0.76 0.4 0.12 +0.78 0.4 0.12 +0.8 0.4 0.12 +0.2 0.42 0.12 +0.22 0.42 0.12 +0.24 0.42 0.12 +0.26 0.42 0.12 +0.74 0.42 0.12 +0.76 0.42 0.12 +0.78 0.42 0.12 +0.8 0.42 0.12 +0.2 0.44 0.12 +0.22 0.44 0.12 +0.24 0.44 0.12 +0.26 0.44 0.12 +0.74 0.44 0.12 +0.76 0.44 0.12 +0.78 0.44 0.12 +0.8 0.44 0.12 +0.18 0.46 0.12 +0.2 0.46 0.12 +0.22 0.46 0.12 +0.24 0.46 0.12 +0.26 0.46 0.12 +0.74 0.46 0.12 +0.76 0.46 0.12 +0.78 0.46 0.12 +0.8 0.46 0.12 +0.82 0.46 0.12 +0.18 0.48 0.12 +0.2 0.48 0.12 +0.22 0.48 0.12 +0.24 0.48 0.12 +0.76 0.48 0.12 +0.78 0.48 0.12 +0.8 0.48 0.12 +0.82 0.48 0.12 +0.18 0.5 0.12 +0.2 0.5 0.12 +0.22 0.5 0.12 +0.24 0.5 0.12 +0.76 0.5 0.12 +0.78 0.5 0.12 +0.8 0.5 0.12 +0.82 0.5 0.12 +0.18 0.52 0.12 +0.2 0.52 0.12 +0.22 0.52 0.12 +0.24 0.52 0.12 +0.76 0.52 0.12 +0.78 0.52 0.12 +0.8 0.52 0.12 +0.82 0.52 0.12 +0.18 0.54 0.12 +0.2 0.54 0.12 +0.22 0.54 0.12 +0.24 0.54 0.12 +0.26 0.54 0.12 +0.74 0.54 0.12 +0.76 0.54 0.12 +0.78 0.54 0.12 +0.8 0.54 0.12 +0.82 0.54 0.12 +0.2 0.56 0.12 +0.22 0.56 0.12 +0.24 0.56 0.12 +0.26 0.56 0.12 +0.74 0.56 0.12 +0.76 0.56 0.12 +0.78 0.56 0.12 +0.8 0.56 0.12 +0.2 0.58 0.12 +0.22 0.58 0.12 +0.24 0.58 0.12 +0.26 0.58 0.12 +0.74 0.58 0.12 +0.76 0.58 0.12 +0.78 0.58 0.12 +0.8 0.58 0.12 +0.2 0.6 0.12 +0.22 0.6 0.12 +0.24 0.6 0.12 +0.26 0.6 0.12 +0.28 0.6 0.12 +0.72 0.6 0.12 +0.74 0.6 0.12 +0.76 0.6 0.12 +0.78 0.6 0.12 +0.8 0.6 0.12 +0.2 0.62 0.12 +0.22 0.62 0.12 +0.24 0.62 0.12 +0.26 0.62 0.12 +0.28 0.62 0.12 +0.72 0.62 0.12 +0.74 0.62 0.12 +0.76 0.62 0.12 +0.78 0.62 0.12 +0.8 0.62 0.12 +0.22 0.64 0.12 +0.24 0.64 0.12 +0.26 0.64 0.12 +0.28 0.64 0.12 +0.3 0.64 0.12 +0.7 0.64 0.12 +0.72 0.64 0.12 +0.74 0.64 0.12 +0.76 0.64 0.12 +0.78 0.64 0.12 +0.22 0.66 0.12 +0.24 0.66 0.12 +0.26 0.66 0.12 +0.28 0.66 0.12 +0.3 0.66 0.12 +0.7 0.66 0.12 +0.72 0.66 0.12 +0.74 0.66 0.12 +0.76 0.66 0.12 +0.78 0.66 0.12 +0.24 0.68 0.12 +0.26 0.68 0.12 +0.28 0.68 0.12 +0.3 0.68 0.12 +0.32 0.68 0.12 +0.68 0.68 0.12 +0.7 0.68 0.12 +0.72 0.68 0.12 +0.74 0.68 0.12 +0.76 0.68 0.12 +0.26 0.7 0.12 +0.28 0.7 0.12 +0.3 0.7 0.12 +0.32 0.7 0.12 +0.34 0.7 0.12 +0.36 0.7 0.12 +0.64 0.7 0.12 +0.66 0.7 0.12 +0.68 0.7 0.12 +0.7 0.7 0.12 +0.72 0.7 0.12 +0.74 0.7 0.12 +0.28 0.72 0.12 +0.3 0.72 0.12 +0.32 0.72 0.12 +0.34 0.72 0.12 +0.36 0.72 0.12 +0.38 0.72 0.12 +0.4 0.72 0.12 +0.6 0.72 0.12 +0.62 0.72 0.12 +0.64 0.72 0.12 +0.66 0.72 0.12 +0.68 0.72 0.12 +0.7 0.72 0.12 +0.72 0.72 0.12 +0.3 0.74 0.12 +0.32 0.74 0.12 +0.34 0.74 0.12 +0.36 0.74 0.12 +0.38 0.74 0.12 +0.4 0.74 0.12 +0.42 0.74 0.12 +0.44 0.74 0.12 +0.46 0.74 0.12 +0.54 0.74 0.12 +0.56 0.74 0.12 +0.58 0.74 0.12 +0.6 0.74 0.12 +0.62 0.74 0.12 +0.64 0.74 0.12 +0.66 0.74 0.12 +0.68 0.74 0.12 +0.7 0.74 0.12 +0.32 0.76 0.12 +0.34 0.76 0.12 +0.36 0.76 0.12 +0.38 0.76 0.12 +0.4 0.76 0.12 +0.42 0.76 0.12 +0.44 0.76 0.12 +0.46 0.76 0.12 +0.48 0.76 0.12 +0.5 0.76 0.12 +0.52 0.76 0.12 +0.54 0.76 0.12 +0.56 0.76 0.12 +0.58 0.76 0.12 +0.6 0.76 0.12 +0.62 0.76 0.12 +0.64 0.76 0.12 +0.66 0.76 0.12 +0.68 0.76 0.12 +0.34 0.78 0.12 +0.36 0.78 0.12 +0.38 0.78 0.12 +0.4 0.78 0.12 +0.42 0.78 0.12 +0.44 0.78 0.12 +0.46 0.78 0.12 +0.48 0.78 0.12 +0.5 0.78 0.12 +0.52 0.78 0.12 +0.54 0.78 0.12 +0.56 0.78 0.12 +0.58 0.78 0.12 +0.6 0.78 0.12 +0.62 0.78 0.12 +0.64 0.78 0.12 +0.66 0.78 0.12 +0.38 0.8 0.12 +0.4 0.8 0.12 +0.42 0.8 0.12 +0.44 0.8 0.12 +0.46 0.8 0.12 +0.48 0.8 0.12 +0.5 0.8 0.12 +0.52 0.8 0.12 +0.54 0.8 0.12 +0.56 0.8 0.12 +0.58 0.8 0.12 +0.6 0.8 0.12 +0.62 0.8 0.12 +0.46 0.82 0.12 +0.48 0.82 0.12 +0.5 0.82 0.12 +0.52 0.82 0.12 +0.54 0.82 0.12 +0.44 0.16 0.14 +0.46 0.16 0.14 +0.48 0.16 0.14 +0.5 0.16 0.14 +0.52 0.16 0.14 +0.54 0.16 0.14 +0.56 0.16 0.14 +0.38 0.18 0.14 +0.4 0.18 0.14 +0.42 0.18 0.14 +0.44 0.18 0.14 +0.46 0.18 0.14 +0.48 0.18 0.14 +0.5 0.18 0.14 +0.52 0.18 0.14 +0.54 0.18 0.14 +0.56 0.18 0.14 +0.58 0.18 0.14 +0.6 0.18 0.14 +0.62 0.18 0.14 +0.34 0.2 0.14 +0.36 0.2 0.14 +0.38 0.2 0.14 +0.4 0.2 0.14 +0.42 0.2 0.14 +0.44 0.2 0.14 +0.46 0.2 0.14 +0.48 0.2 0.14 +0.5 0.2 0.14 +0.52 0.2 0.14 +0.54 0.2 0.14 +0.56 0.2 0.14 +0.58 0.2 0.14 +0.6 0.2 0.14 +0.62 0.2 0.14 +0.64 0.2 0.14 +0.66 0.2 0.14 +0.3 0.22 0.14 +0.32 0.22 0.14 +0.34 0.22 0.14 +0.36 0.22 0.14 +0.38 0.22 0.14 +0.4 0.22 0.14 +0.42 0.22 0.14 +0.44 0.22 0.14 +0.46 0.22 0.14 +0.48 0.22 0.14 +0.5 0.22 0.14 +0.52 0.22 0.14 +0.54 0.22 0.14 +0.56 0.22 0.14 +0.58 0.22 0.14 +0.6 0.22 0.14 +0.62 0.22 0.14 +0.64 0.22 0.14 +0.66 0.22 0.14 +0.68 0.22 0.14 +0.7 0.22 0.14 +0.28 0.24 0.14 +0.3 0.24 0.14 +0.32 0.24 0.14 +0.34 0.24 0.14 +0.36 0.24 0.14 +0.38 0.24 0.14 +0.4 0.24 0.14 +0.42 0.24 0.14 +0.58 0.24 0.14 +0.6 0.24 0.14 +0.62 0.24 0.14 +0.64 0.24 0.14 +0.66 0.24 0.14 +0.68 0.24 0.14 +0.7 0.24 0.14 +0.72 0.24 0.14 +0.26 0.26 0.14 +0.28 0.26 0.14 +0.3 0.26 0.14 +0.32 0.26 0.14 +0.34 0.26 0.14 +0.36 0.26 0.14 +0.64 0.26 0.14 +0.66 0.26 0.14 +0.68 0.26 0.14 +0.7 0.26 0.14 +0.72 0.26 0.14 +0.74 0.26 0.14 +0.24 0.28 0.14 +0.26 0.28 0.14 +0.28 0.28 0.14 +0.3 0.28 0.14 +0.32 0.28 0.14 +0.34 0.28 0.14 +0.66 0.28 0.14 +0.68 0.28 0.14 +0.7 0.28 0.14 +0.72 0.28 0.14 +0.74 0.28 0.14 +0.76 0.28 0.14 +0.22 0.3 0.14 +0.24 0.3 0.14 +0.26 0.3 0.14 +0.28 0.3 0.14 +0.3 0.3 0.14 +0.7 0.3 0.14 +0.72 0.3 0.14 +0.74 0.3 0.14 +0.76 0.3 0.14 +0.78 0.3 0.14 +0.22 0.32 0.14 +0.24 0.32 0.14 +0.26 0.32 0.14 +0.28 0.32 0.14 +0.72 0.32 0.14 +0.74 0.32 0.14 +0.76 0.32 0.14 +0.78 0.32 0.14 +0.2 0.34 0.14 +0.22 0.34 0.14 +0.24 0.34 0.14 +0.26 0.34 0.14 +0.28 0.34 0.14 +0.72 0.34 0.14 +0.74 0.34 0.14 +0.76 0.34 0.14 +0.78 0.34 0.14 +0.8 0.34 0.14 +0.2 0.36 0.14 +0.22 0.36 0.14 +0.24 0.36 0.14 +0.26 0.36 0.14 +0.74 0.36 0.14 +0.76 0.36 0.14 +0.78 0.36 0.14 +0.8 0.36 0.14 +0.18 0.38 0.14 +0.2 0.38 0.14 +0.22 0.38 0.14 +0.24 0.38 0.14 +0.76 0.38 0.14 +0.78 0.38 0.14 +0.8 0.38 0.14 +0.82 0.38 0.14 +0.18 0.4 0.14 +0.2 0.4 0.14 +0.22 0.4 0.14 +0.24 0.4 0.14 +0.76 0.4 0.14 +0.78 0.4 0.14 +0.8 0.4 0.14 +0.82 0.4 0.14 +0.18 0.42 0.14 +0.2 0.42 0.14 +0.22 0.42 0.14 +0.24 0.42 0.14 +0.76 0.42 0.14 +0.78 0.42 0.14 +0.8 0.42 0.14 +0.82 0.42 0.14 +0.16 0.44 0.14 +0.18 0.44 0.14 +0.2 0.44 0.14 +0.22 0.44 0.14 +0.78 0.44 0.14 +0.8 0.44 0.14 +0.82 0.44 0.14 +0.84 0.44 0.14 +0.16 0.46 0.14 +0.18 0.46 0.14 +0.2 0.46 0.14 +0.22 0.46 0.14 +0.78 0.46 0.14 +0.8 0.46 0.14 +0.82 0.46 0.14 +0.84 0.46 0.14 +0.16 0.48 0.14 +0.18 0.48 0.14 +0.2 0.48 0.14 +0.22 0.48 0.14 +0.78 0.48 0.14 +0.8 0.48 0.14 +0.82 0.48 0.14 +0.84 0.48 0.14 +0.16 0.5 0.14 +0.18 0.5 0.14 +0.2 0.5 0.14 +0.22 0.5 0.14 +0.78 0.5 0.14 +0.8 0.5 0.14 +0.82 0.5 0.14 +0.84 0.5 0.14 +0.16 0.52 0.14 +0.18 0.52 0.14 +0.2 0.52 0.14 +0.22 0.52 0.14 +0.78 0.52 0.14 +0.8 0.52 0.14 +0.82 0.52 0.14 +0.84 0.52 0.14 +0.16 0.54 0.14 +0.18 0.54 0.14 +0.2 0.54 0.14 +0.22 0.54 0.14 +0.78 0.54 0.14 +0.8 0.54 0.14 +0.82 0.54 0.14 +0.84 0.54 0.14 +0.16 0.56 0.14 +0.18 0.56 0.14 +0.2 0.56 0.14 +0.22 0.56 0.14 +0.78 0.56 0.14 +0.8 0.56 0.14 +0.82 0.56 0.14 +0.84 0.56 0.14 +0.18 0.58 0.14 +0.2 0.58 0.14 +0.22 0.58 0.14 +0.24 0.58 0.14 +0.76 0.58 0.14 +0.78 0.58 0.14 +0.8 0.58 0.14 +0.82 0.58 0.14 +0.18 0.6 0.14 +0.2 0.6 0.14 +0.22 0.6 0.14 +0.24 0.6 0.14 +0.76 0.6 0.14 +0.78 0.6 0.14 +0.8 0.6 0.14 +0.82 0.6 0.14 +0.18 0.62 0.14 +0.2 0.62 0.14 +0.22 0.62 0.14 +0.24 0.62 0.14 +0.76 0.62 0.14 +0.78 0.62 0.14 +0.8 0.62 0.14 +0.82 0.62 0.14 +0.2 0.64 0.14 +0.22 0.64 0.14 +0.24 0.64 0.14 +0.26 0.64 0.14 +0.74 0.64 0.14 +0.76 0.64 0.14 +0.78 0.64 0.14 +0.8 0.64 0.14 +0.2 0.66 0.14 +0.22 0.66 0.14 +0.24 0.66 0.14 +0.26 0.66 0.14 +0.28 0.66 0.14 +0.72 0.66 0.14 +0.74 0.66 0.14 +0.76 0.66 0.14 +0.78 0.66 0.14 +0.8 0.66 0.14 +0.22 0.68 0.14 +0.24 0.68 0.14 +0.26 0.68 0.14 +0.28 0.68 0.14 +0.72 0.68 0.14 +0.74 0.68 0.14 +0.76 0.68 0.14 +0.78 0.68 0.14 +0.22 0.7 0.14 +0.24 0.7 0.14 +0.26 0.7 0.14 +0.28 0.7 0.14 +0.3 0.7 0.14 +0.7 0.7 0.14 +0.72 0.7 0.14 +0.74 0.7 0.14 +0.76 0.7 0.14 +0.78 0.7 0.14 +0.24 0.72 0.14 +0.26 0.72 0.14 +0.28 0.72 0.14 +0.3 0.72 0.14 +0.32 0.72 0.14 +0.34 0.72 0.14 +0.66 0.72 0.14 +0.68 0.72 0.14 +0.7 0.72 0.14 +0.72 0.72 0.14 +0.74 0.72 0.14 +0.76 0.72 0.14 +0.26 0.74 0.14 +0.28 0.74 0.14 +0.3 0.74 0.14 +0.32 0.74 0.14 +0.34 0.74 0.14 +0.36 0.74 0.14 +0.64 0.74 0.14 +0.66 0.74 0.14 +0.68 0.74 0.14 +0.7 0.74 0.14 +0.72 0.74 0.14 +0.74 0.74 0.14 +0.28 0.76 0.14 +0.3 0.76 0.14 +0.32 0.76 0.14 +0.34 0.76 0.14 +0.36 0.76 0.14 +0.38 0.76 0.14 +0.4 0.76 0.14 +0.42 0.76 0.14 +0.58 0.76 0.14 +0.6 0.76 0.14 +0.62 0.76 0.14 +0.64 0.76 0.14 +0.66 0.76 0.14 +0.68 0.76 0.14 +0.7 0.76 0.14 +0.72 0.76 0.14 +0.3 0.78 0.14 +0.32 0.78 0.14 +0.34 0.78 0.14 +0.36 0.78 0.14 +0.38 0.78 0.14 +0.4 0.78 0.14 +0.42 0.78 0.14 +0.44 0.78 0.14 +0.46 0.78 0.14 +0.48 0.78 0.14 +0.5 0.78 0.14 +0.52 0.78 0.14 +0.54 0.78 0.14 +0.56 0.78 0.14 +0.58 0.78 0.14 +0.6 0.78 0.14 +0.62 0.78 0.14 +0.64 0.78 0.14 +0.66 0.78 0.14 +0.68 0.78 0.14 +0.7 0.78 0.14 +0.34 0.8 0.14 +0.36 0.8 0.14 +0.38 0.8 0.14 +0.4 0.8 0.14 +0.42 0.8 0.14 +0.44 0.8 0.14 +0.46 0.8 0.14 +0.48 0.8 0.14 +0.5 0.8 0.14 +0.52 0.8 0.14 +0.54 0.8 0.14 +0.56 0.8 0.14 +0.58 0.8 0.14 +0.6 0.8 0.14 +0.62 0.8 0.14 +0.64 0.8 0.14 +0.66 0.8 0.14 +0.38 0.82 0.14 +0.4 0.82 0.14 +0.42 0.82 0.14 +0.44 0.82 0.14 +0.46 0.82 0.14 +0.48 0.82 0.14 +0.5 0.82 0.14 +0.52 0.82 0.14 +0.54 0.82 0.14 +0.56 0.82 0.14 +0.58 0.82 0.14 +0.6 0.82 0.14 +0.62 0.82 0.14 +0.44 0.84 0.14 +0.46 0.84 0.14 +0.48 0.84 0.14 +0.5 0.84 0.14 +0.52 0.84 0.14 +0.54 0.84 0.14 +0.56 0.84 0.14 +0.44 0.14 0.16 +0.46 0.14 0.16 +0.48 0.14 0.16 +0.5 0.14 0.16 +0.52 0.14 0.16 +0.54 0.14 0.16 +0.56 0.14 0.16 +0.38 0.16 0.16 +0.4 0.16 0.16 +0.42 0.16 0.16 +0.44 0.16 0.16 +0.46 0.16 0.16 +0.48 0.16 0.16 +0.5 0.16 0.16 +0.52 0.16 0.16 +0.54 0.16 0.16 +0.56 0.16 0.16 +0.58 0.16 0.16 +0.6 0.16 0.16 +0.62 0.16 0.16 +0.34 0.18 0.16 +0.36 0.18 0.16 +0.38 0.18 0.16 +0.4 0.18 0.16 +0.42 0.18 0.16 +0.44 0.18 0.16 +0.46 0.18 0.16 +0.48 0.18 0.16 +0.5 0.18 0.16 +0.52 0.18 0.16 +0.54 0.18 0.16 +0.56 0.18 0.16 +0.58 0.18 0.16 +0.6 0.18 0.16 +0.62 0.18 0.16 +0.64 0.18 0.16 +0.66 0.18 0.16 +0.3 0.2 0.16 +0.32 0.2 0.16 +0.34 0.2 0.16 +0.36 0.2 0.16 +0.38 0.2 0.16 +0.4 0.2 0.16 +0.42 0.2 0.16 +0.44 0.2 0.16 +0.46 0.2 0.16 +0.48 0.2 0.16 +0.5 0.2 0.16 +0.52 0.2 0.16 +0.54 0.2 0.16 +0.56 0.2 0.16 +0.58 0.2 0.16 +0.6 0.2 0.16 +0.62 0.2 0.16 +0.64 0.2 0.16 +0.66 0.2 0.16 +0.68 0.2 0.16 +0.7 0.2 0.16 +0.28 0.22 0.16 +0.3 0.22 0.16 +0.32 0.22 0.16 +0.34 0.22 0.16 +0.36 0.22 0.16 +0.38 0.22 0.16 +0.4 0.22 0.16 +0.6 0.22 0.16 +0.62 0.22 0.16 +0.64 0.22 0.16 +0.66 0.22 0.16 +0.68 0.22 0.16 +0.7 0.22 0.16 +0.72 0.22 0.16 +0.26 0.24 0.16 +0.28 0.24 0.16 +0.3 0.24 0.16 +0.32 0.24 0.16 +0.34 0.24 0.16 +0.36 0.24 0.16 +0.64 0.24 0.16 +0.66 0.24 0.16 +0.68 0.24 0.16 +0.7 0.24 0.16 +0.72 0.24 0.16 +0.74 0.24 0.16 +0.24 0.26 0.16 +0.26 0.26 0.16 +0.28 0.26 0.16 +0.3 0.26 0.16 +0.32 0.26 0.16 +0.68 0.26 0.16 +0.7 0.26 0.16 +0.72 0.26 0.16 +0.74 0.26 0.16 +0.76 0.26 0.16 +0.22 0.28 0.16 +0.24 0.28 0.16 +0.26 0.28 0.16 +0.28 0.28 0.16 +0.3 0.28 0.16 +0.7 0.28 0.16 +0.72 0.28 0.16 +0.74 0.28 0.16 +0.76 0.28 0.16 +0.78 0.28 0.16 +0.2 0.3 0.16 +0.22 0.3 0.16 +0.24 0.3 0.16 +0.26 0.3 0.16 +0.28 0.3 0.16 +0.72 0.3 0.16 +0.74 0.3 0.16 +0.76 0.3 0.16 +0.78 0.3 0.16 +0.8 0.3 0.16 +0.2 0.32 0.16 +0.22 0.32 0.16 +0.24 0.32 0.16 +0.26 0.32 0.16 +0.74 0.32 0.16 +0.76 0.32 0.16 +0.78 0.32 0.16 +0.8 0.32 0.16 +0.18 0.34 0.16 +0.2 0.34 0.16 +0.22 0.34 0.16 +0.24 0.34 0.16 +0.76 0.34 0.16 +0.78 0.34 0.16 +0.8 0.34 0.16 +0.82 0.34 0.16 +0.18 0.36 0.16 +0.2 0.36 0.16 +0.22 0.36 0.16 +0.24 0.36 0.16 +0.76 0.36 0.16 +0.78 0.36 0.16 +0.8 0.36 0.16 +0.82 0.36 0.16 +0.16 0.38 0.16 +0.18 0.38 0.16 +0.2 0.38 0.16 +0.22 0.38 0.16 +0.78 0.38 0.16 +0.8 0.38 0.16 +0.82 0.38 0.16 +0.84 0.38 0.16 +0.16 0.4 0.16 +0.18 0.4 0.16 +0.2 0.4 0.16 +0.22 0.4 0.16 +0.78 0.4 0.16 +0.8 0.4 0.16 +0.82 0.4 0.16 +0.84 0.4 0.16 +0.16 0.42 0.16 +0.18 0.42 0.16 +0.2 0.42 0.16 +0.8 0.42 0.16 +0.82 0.42 0.16 +0.84 0.42 0.16 +0.14 0.44 0.16 +0.16 0.44 0.16 +0.18 0.44 0.16 +0.2 0.44 0.16 +0.8 0.44 0.16 +0.82 0.44 0.16 +0.84 0.44 0.16 +0.86 0.44 0.16 +0.14 0.46 0.16 +0.16 0.46 0.16 +0.18 0.46 0.16 +0.2 0.46 0.16 +0.8 0.46 0.16 +0.82 0.46 0.16 +0.84 0.46 0.16 +0.86 0.46 0.16 +0.14 0.48 0.16 +0.16 0.48 0.16 +0.18 0.48 0.16 +0.2 0.48 0.16 +0.8 0.48 0.16 +0.82 0.48 0.16 +0.84 0.48 0.16 +0.86 0.48 0.16 +0.14 0.5 0.16 +0.16 0.5 0.16 +0.18 0.5 0.16 +0.2 0.5 0.16 +0.8 0.5 0.16 +0.82 0.5 0.16 +0.84 0.5 0.16 +0.86 0.5 0.16 +0.14 0.52 0.16 +0.16 0.52 0.16 +0.18 0.52 0.16 +0.2 0.52 0.16 +0.8 0.52 0.16 +0.82 0.52 0.16 +0.84 0.52 0.16 +0.86 0.52 0.16 +0.14 0.54 0.16 +0.16 0.54 0.16 +0.18 0.54 0.16 +0.2 0.54 0.16 +0.8 0.54 0.16 +0.82 0.54 0.16 +0.84 0.54 0.16 +0.86 0.54 0.16 +0.14 0.56 0.16 +0.16 0.56 0.16 +0.18 0.56 0.16 +0.2 0.56 0.16 +0.8 0.56 0.16 +0.82 0.56 0.16 +0.84 0.56 0.16 +0.86 0.56 0.16 +0.16 0.58 0.16 +0.18 0.58 0.16 +0.2 0.58 0.16 +0.8 0.58 0.16 +0.82 0.58 0.16 +0.84 0.58 0.16 +0.16 0.6 0.16 +0.18 0.6 0.16 +0.2 0.6 0.16 +0.22 0.6 0.16 +0.78 0.6 0.16 +0.8 0.6 0.16 +0.82 0.6 0.16 +0.84 0.6 0.16 +0.16 0.62 0.16 +0.18 0.62 0.16 +0.2 0.62 0.16 +0.22 0.62 0.16 +0.78 0.62 0.16 +0.8 0.62 0.16 +0.82 0.62 0.16 +0.84 0.62 0.16 +0.18 0.64 0.16 +0.2 0.64 0.16 +0.22 0.64 0.16 +0.24 0.64 0.16 +0.76 0.64 0.16 +0.78 0.64 0.16 +0.8 0.64 0.16 +0.82 0.64 0.16 +0.18 0.66 0.16 +0.2 0.66 0.16 +0.22 0.66 0.16 +0.24 0.66 0.16 +0.76 0.66 0.16 +0.78 0.66 0.16 +0.8 0.66 0.16 +0.82 0.66 0.16 +0.2 0.68 0.16 +0.22 0.68 0.16 +0.24 0.68 0.16 +0.26 0.68 0.16 +0.74 0.68 0.16 +0.76 0.68 0.16 +0.78 0.68 0.16 +0.8 0.68 0.16 +0.2 0.7 0.16 +0.22 0.7 0.16 +0.24 0.7 0.16 +0.26 0.7 0.16 +0.28 0.7 0.16 +0.72 0.7 0.16 +0.74 0.7 0.16 +0.76 0.7 0.16 +0.78 0.7 0.16 +0.8 0.7 0.16 +0.22 0.72 0.16 +0.24 0.72 0.16 +0.26 0.72 0.16 +0.28 0.72 0.16 +0.3 0.72 0.16 +0.7 0.72 0.16 +0.72 0.72 0.16 +0.74 0.72 0.16 +0.76 0.72 0.16 +0.78 0.72 0.16 +0.24 0.74 0.16 +0.26 0.74 0.16 +0.28 0.74 0.16 +0.3 0.74 0.16 +0.32 0.74 0.16 +0.68 0.74 0.16 +0.7 0.74 0.16 +0.72 0.74 0.16 +0.74 0.74 0.16 +0.76 0.74 0.16 +0.26 0.76 0.16 +0.28 0.76 0.16 +0.3 0.76 0.16 +0.32 0.76 0.16 +0.34 0.76 0.16 +0.36 0.76 0.16 +0.64 0.76 0.16 +0.66 0.76 0.16 +0.68 0.76 0.16 +0.7 0.76 0.16 +0.72 0.76 0.16 +0.74 0.76 0.16 +0.28 0.78 0.16 +0.3 0.78 0.16 +0.32 0.78 0.16 +0.34 0.78 0.16 +0.36 0.78 0.16 +0.38 0.78 0.16 +0.4 0.78 0.16 +0.6 0.78 0.16 +0.62 0.78 0.16 +0.64 0.78 0.16 +0.66 0.78 0.16 +0.68 0.78 0.16 +0.7 0.78 0.16 +0.72 0.78 0.16 +0.3 0.8 0.16 +0.32 0.8 0.16 +0.34 0.8 0.16 +0.36 0.8 0.16 +0.38 0.8 0.16 +0.4 0.8 0.16 +0.42 0.8 0.16 +0.44 0.8 0.16 +0.46 0.8 0.16 +0.48 0.8 0.16 +0.5 0.8 0.16 +0.52 0.8 0.16 +0.54 0.8 0.16 +0.56 0.8 0.16 +0.58 0.8 0.16 +0.6 0.8 0.16 +0.62 0.8 0.16 +0.64 0.8 0.16 +0.66 0.8 0.16 +0.68 0.8 0.16 +0.7 0.8 0.16 +0.34 0.82 0.16 +0.36 0.82 0.16 +0.38 0.82 0.16 +0.4 0.82 0.16 +0.42 0.82 0.16 +0.44 0.82 0.16 +0.46 0.82 0.16 +0.48 0.82 0.16 +0.5 0.82 0.16 +0.52 0.82 0.16 +0.54 0.82 0.16 +0.56 0.82 0.16 +0.58 0.82 0.16 +0.6 0.82 0.16 +0.62 0.82 0.16 +0.64 0.82 0.16 +0.66 0.82 0.16 +0.38 0.84 0.16 +0.4 0.84 0.16 +0.42 0.84 0.16 +0.44 0.84 0.16 +0.46 0.84 0.16 +0.48 0.84 0.16 +0.5 0.84 0.16 +0.52 0.84 0.16 +0.54 0.84 0.16 +0.56 0.84 0.16 +0.58 0.84 0.16 +0.6 0.84 0.16 +0.62 0.84 0.16 +0.44 0.86 0.16 +0.46 0.86 0.16 +0.48 0.86 0.16 +0.5 0.86 0.16 +0.52 0.86 0.16 +0.54 0.86 0.16 +0.56 0.86 0.16 +0.46 0.12 0.18 +0.48 0.12 0.18 +0.5 0.12 0.18 +0.52 0.12 0.18 +0.54 0.12 0.18 +0.38 0.14 0.18 +0.4 0.14 0.18 +0.42 0.14 0.18 +0.44 0.14 0.18 +0.46 0.14 0.18 +0.48 0.14 0.18 +0.5 0.14 0.18 +0.52 0.14 0.18 +0.54 0.14 0.18 +0.56 0.14 0.18 +0.58 0.14 0.18 +0.6 0.14 0.18 +0.62 0.14 0.18 +0.34 0.16 0.18 +0.36 0.16 0.18 +0.38 0.16 0.18 +0.4 0.16 0.18 +0.42 0.16 0.18 +0.44 0.16 0.18 +0.46 0.16 0.18 +0.48 0.16 0.18 +0.5 0.16 0.18 +0.52 0.16 0.18 +0.54 0.16 0.18 +0.56 0.16 0.18 +0.58 0.16 0.18 +0.6 0.16 0.18 +0.62 0.16 0.18 +0.64 0.16 0.18 +0.66 0.16 0.18 +0.3 0.18 0.18 +0.32 0.18 0.18 +0.34 0.18 0.18 +0.36 0.18 0.18 +0.38 0.18 0.18 +0.4 0.18 0.18 +0.42 0.18 0.18 +0.44 0.18 0.18 +0.46 0.18 0.18 +0.48 0.18 0.18 +0.5 0.18 0.18 +0.52 0.18 0.18 +0.54 0.18 0.18 +0.56 0.18 0.18 +0.58 0.18 0.18 +0.6 0.18 0.18 +0.62 0.18 0.18 +0.64 0.18 0.18 +0.66 0.18 0.18 +0.68 0.18 0.18 +0.7 0.18 0.18 +0.28 0.2 0.18 +0.3 0.2 0.18 +0.32 0.2 0.18 +0.34 0.2 0.18 +0.36 0.2 0.18 +0.38 0.2 0.18 +0.62 0.2 0.18 +0.64 0.2 0.18 +0.66 0.2 0.18 +0.68 0.2 0.18 +0.7 0.2 0.18 +0.72 0.2 0.18 +0.24 0.22 0.18 +0.26 0.22 0.18 +0.28 0.22 0.18 +0.3 0.22 0.18 +0.32 0.22 0.18 +0.34 0.22 0.18 +0.66 0.22 0.18 +0.68 0.22 0.18 +0.7 0.22 0.18 +0.72 0.22 0.18 +0.74 0.22 0.18 +0.76 0.22 0.18 +0.22 0.24 0.18 +0.24 0.24 0.18 +0.26 0.24 0.18 +0.28 0.24 0.18 +0.3 0.24 0.18 +0.7 0.24 0.18 +0.72 0.24 0.18 +0.74 0.24 0.18 +0.76 0.24 0.18 +0.78 0.24 0.18 +0.22 0.26 0.18 +0.24 0.26 0.18 +0.26 0.26 0.18 +0.28 0.26 0.18 +0.72 0.26 0.18 +0.74 0.26 0.18 +0.76 0.26 0.18 +0.78 0.26 0.18 +0.2 0.28 0.18 +0.22 0.28 0.18 +0.24 0.28 0.18 +0.26 0.28 0.18 +0.74 0.28 0.18 +0.76 0.28 0.18 +0.78 0.28 0.18 +0.8 0.28 0.18 +0.18 0.3 0.18 +0.2 0.3 0.18 +0.22 0.3 0.18 +0.24 0.3 0.18 +0.76 0.3 0.18 +0.78 0.3 0.18 +0.8 0.3 0.18 +0.82 0.3 0.18 +0.18 0.32 0.18 +0.2 0.32 0.18 +0.22 0.32 0.18 +0.78 0.32 0.18 +0.8 0.32 0.18 +0.82 0.32 0.18 +0.16 0.34 0.18 +0.18 0.34 0.18 +0.2 0.34 0.18 +0.22 0.34 0.18 +0.78 0.34 0.18 +0.8 0.34 0.18 +0.82 0.34 0.18 +0.84 0.34 0.18 +0.16 0.36 0.18 +0.18 0.36 0.18 +0.2 0.36 0.18 +0.8 0.36 0.18 +0.82 0.36 0.18 +0.84 0.36 0.18 +0.14 0.38 0.18 +0.16 0.38 0.18 +0.18 0.38 0.18 +0.2 0.38 0.18 +0.8 0.38 0.18 +0.82 0.38 0.18 +0.84 0.38 0.18 +0.86 0.38 0.18 +0.14 0.4 0.18 +0.16 0.4 0.18 +0.18 0.4 0.18 +0.82 0.4 0.18 +0.84 0.4 0.18 +0.86 0.4 0.18 +0.14 0.42 0.18 +0.16 0.42 0.18 +0.18 0.42 0.18 +0.82 0.42 0.18 +0.84 0.42 0.18 +0.86 0.42 0.18 +0.14 0.44 0.18 +0.16 0.44 0.18 +0.18 0.44 0.18 +0.82 0.44 0.18 +0.84 0.44 0.18 +0.86 0.44 0.18 +0.12 0.46 0.18 +0.14 0.46 0.18 +0.16 0.46 0.18 +0.18 0.46 0.18 +0.82 0.46 0.18 +0.84 0.46 0.18 +0.86 0.46 0.18 +0.88 0.46 0.18 +0.12 0.48 0.18 +0.14 0.48 0.18 +0.16 0.48 0.18 +0.18 0.48 0.18 +0.82 0.48 0.18 +0.84 0.48 0.18 +0.86 0.48 0.18 +0.88 0.48 0.18 +0.12 0.5 0.18 +0.14 0.5 0.18 +0.16 0.5 0.18 +0.18 0.5 0.18 +0.82 0.5 0.18 +0.84 0.5 0.18 +0.86 0.5 0.18 +0.88 0.5 0.18 +0.12 0.52 0.18 +0.14 0.52 0.18 +0.16 0.52 0.18 +0.18 0.52 0.18 +0.82 0.52 0.18 +0.84 0.52 0.18 +0.86 0.52 0.18 +0.88 0.52 0.18 +0.12 0.54 0.18 +0.14 0.54 0.18 +0.16 0.54 0.18 +0.18 0.54 0.18 +0.82 0.54 0.18 +0.84 0.54 0.18 +0.86 0.54 0.18 +0.88 0.54 0.18 +0.14 0.56 0.18 +0.16 0.56 0.18 +0.18 0.56 0.18 +0.82 0.56 0.18 +0.84 0.56 0.18 +0.86 0.56 0.18 +0.14 0.58 0.18 +0.16 0.58 0.18 +0.18 0.58 0.18 +0.82 0.58 0.18 +0.84 0.58 0.18 +0.86 0.58 0.18 +0.14 0.6 0.18 +0.16 0.6 0.18 +0.18 0.6 0.18 +0.82 0.6 0.18 +0.84 0.6 0.18 +0.86 0.6 0.18 +0.14 0.62 0.18 +0.16 0.62 0.18 +0.18 0.62 0.18 +0.2 0.62 0.18 +0.8 0.62 0.18 +0.82 0.62 0.18 +0.84 0.62 0.18 +0.86 0.62 0.18 +0.16 0.64 0.18 +0.18 0.64 0.18 +0.2 0.64 0.18 +0.8 0.64 0.18 +0.82 0.64 0.18 +0.84 0.64 0.18 +0.16 0.66 0.18 +0.18 0.66 0.18 +0.2 0.66 0.18 +0.22 0.66 0.18 +0.78 0.66 0.18 +0.8 0.66 0.18 +0.82 0.66 0.18 +0.84 0.66 0.18 +0.18 0.68 0.18 +0.2 0.68 0.18 +0.22 0.68 0.18 +0.78 0.68 0.18 +0.8 0.68 0.18 +0.82 0.68 0.18 +0.18 0.7 0.18 +0.2 0.7 0.18 +0.22 0.7 0.18 +0.24 0.7 0.18 +0.76 0.7 0.18 +0.78 0.7 0.18 +0.8 0.7 0.18 +0.82 0.7 0.18 +0.2 0.72 0.18 +0.22 0.72 0.18 +0.24 0.72 0.18 +0.26 0.72 0.18 +0.74 0.72 0.18 +0.76 0.72 0.18 +0.78 0.72 0.18 +0.8 0.72 0.18 +0.22 0.74 0.18 +0.24 0.74 0.18 +0.26 0.74 0.18 +0.28 0.74 0.18 +0.72 0.74 0.18 +0.74 0.74 0.18 +0.76 0.74 0.18 +0.78 0.74 0.18 +0.22 0.76 0.18 +0.24 0.76 0.18 +0.26 0.76 0.18 +0.28 0.76 0.18 +0.3 0.76 0.18 +0.7 0.76 0.18 +0.72 0.76 0.18 +0.74 0.76 0.18 +0.76 0.76 0.18 +0.78 0.76 0.18 +0.24 0.78 0.18 +0.26 0.78 0.18 +0.28 0.78 0.18 +0.3 0.78 0.18 +0.32 0.78 0.18 +0.34 0.78 0.18 +0.66 0.78 0.18 +0.68 0.78 0.18 +0.7 0.78 0.18 +0.72 0.78 0.18 +0.74 0.78 0.18 +0.76 0.78 0.18 +0.28 0.8 0.18 +0.3 0.8 0.18 +0.32 0.8 0.18 +0.34 0.8 0.18 +0.36 0.8 0.18 +0.38 0.8 0.18 +0.62 0.8 0.18 +0.64 0.8 0.18 +0.66 0.8 0.18 +0.68 0.8 0.18 +0.7 0.8 0.18 +0.72 0.8 0.18 +0.3 0.82 0.18 +0.32 0.82 0.18 +0.34 0.82 0.18 +0.36 0.82 0.18 +0.38 0.82 0.18 +0.4 0.82 0.18 +0.42 0.82 0.18 +0.44 0.82 0.18 +0.46 0.82 0.18 +0.48 0.82 0.18 +0.5 0.82 0.18 +0.52 0.82 0.18 +0.54 0.82 0.18 +0.56 0.82 0.18 +0.58 0.82 0.18 +0.6 0.82 0.18 +0.62 0.82 0.18 +0.64 0.82 0.18 +0.66 0.82 0.18 +0.68 0.82 0.18 +0.7 0.82 0.18 +0.34 0.84 0.18 +0.36 0.84 0.18 +0.38 0.84 0.18 +0.4 0.84 0.18 +0.42 0.84 0.18 +0.44 0.84 0.18 +0.46 0.84 0.18 +0.48 0.84 0.18 +0.5 0.84 0.18 +0.52 0.84 0.18 +0.54 0.84 0.18 +0.56 0.84 0.18 +0.58 0.84 0.18 +0.6 0.84 0.18 +0.62 0.84 0.18 +0.64 0.84 0.18 +0.66 0.84 0.18 +0.38 0.86 0.18 +0.4 0.86 0.18 +0.42 0.86 0.18 +0.44 0.86 0.18 +0.46 0.86 0.18 +0.48 0.86 0.18 +0.5 0.86 0.18 +0.52 0.86 0.18 +0.54 0.86 0.18 +0.56 0.86 0.18 +0.58 0.86 0.18 +0.6 0.86 0.18 +0.62 0.86 0.18 +0.46 0.88 0.18 +0.48 0.88 0.18 +0.5 0.88 0.18 +0.52 0.88 0.18 +0.54 0.88 0.18 +0.38 0.12 0.2 +0.4 0.12 0.2 +0.42 0.12 0.2 +0.44 0.12 0.2 +0.46 0.12 0.2 +0.48 0.12 0.2 +0.5 0.12 0.2 +0.52 0.12 0.2 +0.54 0.12 0.2 +0.56 0.12 0.2 +0.58 0.12 0.2 +0.6 0.12 0.2 +0.62 0.12 0.2 +0.34 0.14 0.2 +0.36 0.14 0.2 +0.38 0.14 0.2 +0.4 0.14 0.2 +0.42 0.14 0.2 +0.44 0.14 0.2 +0.46 0.14 0.2 +0.48 0.14 0.2 +0.5 0.14 0.2 +0.52 0.14 0.2 +0.54 0.14 0.2 +0.56 0.14 0.2 +0.58 0.14 0.2 +0.6 0.14 0.2 +0.62 0.14 0.2 +0.64 0.14 0.2 +0.66 0.14 0.2 +0.3 0.16 0.2 +0.32 0.16 0.2 +0.34 0.16 0.2 +0.36 0.16 0.2 +0.38 0.16 0.2 +0.4 0.16 0.2 +0.42 0.16 0.2 +0.44 0.16 0.2 +0.46 0.16 0.2 +0.48 0.16 0.2 +0.5 0.16 0.2 +0.52 0.16 0.2 +0.54 0.16 0.2 +0.56 0.16 0.2 +0.58 0.16 0.2 +0.6 0.16 0.2 +0.62 0.16 0.2 +0.64 0.16 0.2 +0.66 0.16 0.2 +0.68 0.16 0.2 +0.7 0.16 0.2 +0.28 0.18 0.2 +0.3 0.18 0.2 +0.32 0.18 0.2 +0.34 0.18 0.2 +0.36 0.18 0.2 +0.38 0.18 0.2 +0.62 0.18 0.2 +0.64 0.18 0.2 +0.66 0.18 0.2 +0.68 0.18 0.2 +0.7 0.18 0.2 +0.72 0.18 0.2 +0.24 0.2 0.2 +0.26 0.2 0.2 +0.28 0.2 0.2 +0.3 0.2 0.2 +0.32 0.2 0.2 +0.34 0.2 0.2 +0.66 0.2 0.2 +0.68 0.2 0.2 +0.7 0.2 0.2 +0.72 0.2 0.2 +0.74 0.2 0.2 +0.76 0.2 0.2 +0.22 0.22 0.2 +0.24 0.22 0.2 +0.26 0.22 0.2 +0.28 0.22 0.2 +0.3 0.22 0.2 +0.7 0.22 0.2 +0.72 0.22 0.2 +0.74 0.22 0.2 +0.76 0.22 0.2 +0.78 0.22 0.2 +0.2 0.24 0.2 +0.22 0.24 0.2 +0.24 0.24 0.2 +0.26 0.24 0.2 +0.28 0.24 0.2 +0.72 0.24 0.2 +0.74 0.24 0.2 +0.76 0.24 0.2 +0.78 0.24 0.2 +0.8 0.24 0.2 +0.2 0.26 0.2 +0.22 0.26 0.2 +0.24 0.26 0.2 +0.26 0.26 0.2 +0.74 0.26 0.2 +0.76 0.26 0.2 +0.78 0.26 0.2 +0.8 0.26 0.2 +0.18 0.28 0.2 +0.2 0.28 0.2 +0.22 0.28 0.2 +0.24 0.28 0.2 +0.76 0.28 0.2 +0.78 0.28 0.2 +0.8 0.28 0.2 +0.82 0.28 0.2 +0.16 0.3 0.2 +0.18 0.3 0.2 +0.2 0.3 0.2 +0.22 0.3 0.2 +0.78 0.3 0.2 +0.8 0.3 0.2 +0.82 0.3 0.2 +0.84 0.3 0.2 +0.16 0.32 0.2 +0.18 0.32 0.2 +0.2 0.32 0.2 +0.8 0.32 0.2 +0.82 0.32 0.2 +0.84 0.32 0.2 +0.14 0.34 0.2 +0.16 0.34 0.2 +0.18 0.34 0.2 +0.2 0.34 0.2 +0.8 0.34 0.2 +0.82 0.34 0.2 +0.84 0.34 0.2 +0.86 0.34 0.2 +0.14 0.36 0.2 +0.16 0.36 0.2 +0.18 0.36 0.2 +0.82 0.36 0.2 +0.84 0.36 0.2 +0.86 0.36 0.2 +0.12 0.38 0.2 +0.14 0.38 0.2 +0.16 0.38 0.2 +0.18 0.38 0.2 +0.82 0.38 0.2 +0.84 0.38 0.2 +0.86 0.38 0.2 +0.88 0.38 0.2 +0.12 0.4 0.2 +0.14 0.4 0.2 +0.16 0.4 0.2 +0.84 0.4 0.2 +0.86 0.4 0.2 +0.88 0.4 0.2 +0.12 0.42 0.2 +0.14 0.42 0.2 +0.16 0.42 0.2 +0.84 0.42 0.2 +0.86 0.42 0.2 +0.88 0.42 0.2 +0.12 0.44 0.2 +0.14 0.44 0.2 +0.16 0.44 0.2 +0.84 0.44 0.2 +0.86 0.44 0.2 +0.88 0.44 0.2 +0.12 0.46 0.2 +0.14 0.46 0.2 +0.16 0.46 0.2 +0.84 0.46 0.2 +0.86 0.46 0.2 +0.88 0.46 0.2 +0.12 0.48 0.2 +0.14 0.48 0.2 +0.16 0.48 0.2 +0.84 0.48 0.2 +0.86 0.48 0.2 +0.88 0.48 0.2 +0.12 0.5 0.2 +0.14 0.5 0.2 +0.16 0.5 0.2 +0.84 0.5 0.2 +0.86 0.5 0.2 +0.88 0.5 0.2 +0.12 0.52 0.2 +0.14 0.52 0.2 +0.16 0.52 0.2 +0.84 0.52 0.2 +0.86 0.52 0.2 +0.88 0.52 0.2 +0.12 0.54 0.2 +0.14 0.54 0.2 +0.16 0.54 0.2 +0.84 0.54 0.2 +0.86 0.54 0.2 +0.88 0.54 0.2 +0.12 0.56 0.2 +0.14 0.56 0.2 +0.16 0.56 0.2 +0.84 0.56 0.2 +0.86 0.56 0.2 +0.88 0.56 0.2 +0.12 0.58 0.2 +0.14 0.58 0.2 +0.16 0.58 0.2 +0.84 0.58 0.2 +0.86 0.58 0.2 +0.88 0.58 0.2 +0.12 0.6 0.2 +0.14 0.6 0.2 +0.16 0.6 0.2 +0.84 0.6 0.2 +0.86 0.6 0.2 +0.88 0.6 0.2 +0.12 0.62 0.2 +0.14 0.62 0.2 +0.16 0.62 0.2 +0.18 0.62 0.2 +0.82 0.62 0.2 +0.84 0.62 0.2 +0.86 0.62 0.2 +0.88 0.62 0.2 +0.14 0.64 0.2 +0.16 0.64 0.2 +0.18 0.64 0.2 +0.82 0.64 0.2 +0.84 0.64 0.2 +0.86 0.64 0.2 +0.14 0.66 0.2 +0.16 0.66 0.2 +0.18 0.66 0.2 +0.2 0.66 0.2 +0.8 0.66 0.2 +0.82 0.66 0.2 +0.84 0.66 0.2 +0.86 0.66 0.2 +0.16 0.68 0.2 +0.18 0.68 0.2 +0.2 0.68 0.2 +0.8 0.68 0.2 +0.82 0.68 0.2 +0.84 0.68 0.2 +0.16 0.7 0.2 +0.18 0.7 0.2 +0.2 0.7 0.2 +0.22 0.7 0.2 +0.78 0.7 0.2 +0.8 0.7 0.2 +0.82 0.7 0.2 +0.84 0.7 0.2 +0.18 0.72 0.2 +0.2 0.72 0.2 +0.22 0.72 0.2 +0.24 0.72 0.2 +0.76 0.72 0.2 +0.78 0.72 0.2 +0.8 0.72 0.2 +0.82 0.72 0.2 +0.2 0.74 0.2 +0.22 0.74 0.2 +0.24 0.74 0.2 +0.26 0.74 0.2 +0.74 0.74 0.2 +0.76 0.74 0.2 +0.78 0.74 0.2 +0.8 0.74 0.2 +0.2 0.76 0.2 +0.22 0.76 0.2 +0.24 0.76 0.2 +0.26 0.76 0.2 +0.28 0.76 0.2 +0.72 0.76 0.2 +0.74 0.76 0.2 +0.76 0.76 0.2 +0.78 0.76 0.2 +0.8 0.76 0.2 +0.22 0.78 0.2 +0.24 0.78 0.2 +0.26 0.78 0.2 +0.28 0.78 0.2 +0.3 0.78 0.2 +0.7 0.78 0.2 +0.72 0.78 0.2 +0.74 0.78 0.2 +0.76 0.78 0.2 +0.78 0.78 0.2 +0.24 0.8 0.2 +0.26 0.8 0.2 +0.28 0.8 0.2 +0.3 0.8 0.2 +0.32 0.8 0.2 +0.34 0.8 0.2 +0.66 0.8 0.2 +0.68 0.8 0.2 +0.7 0.8 0.2 +0.72 0.8 0.2 +0.74 0.8 0.2 +0.76 0.8 0.2 +0.28 0.82 0.2 +0.3 0.82 0.2 +0.32 0.82 0.2 +0.34 0.82 0.2 +0.36 0.82 0.2 +0.38 0.82 0.2 +0.62 0.82 0.2 +0.64 0.82 0.2 +0.66 0.82 0.2 +0.68 0.82 0.2 +0.7 0.82 0.2 +0.72 0.82 0.2 +0.3 0.84 0.2 +0.32 0.84 0.2 +0.34 0.84 0.2 +0.36 0.84 0.2 +0.38 0.84 0.2 +0.4 0.84 0.2 +0.42 0.84 0.2 +0.44 0.84 0.2 +0.46 0.84 0.2 +0.48 0.84 0.2 +0.5 0.84 0.2 +0.52 0.84 0.2 +0.54 0.84 0.2 +0.56 0.84 0.2 +0.58 0.84 0.2 +0.6 0.84 0.2 +0.62 0.84 0.2 +0.64 0.84 0.2 +0.66 0.84 0.2 +0.68 0.84 0.2 +0.7 0.84 0.2 +0.34 0.86 0.2 +0.36 0.86 0.2 +0.38 0.86 0.2 +0.4 0.86 0.2 +0.42 0.86 0.2 +0.44 0.86 0.2 +0.46 0.86 0.2 +0.48 0.86 0.2 +0.5 0.86 0.2 +0.52 0.86 0.2 +0.54 0.86 0.2 +0.56 0.86 0.2 +0.58 0.86 0.2 +0.6 0.86 0.2 +0.62 0.86 0.2 +0.64 0.86 0.2 +0.66 0.86 0.2 +0.38 0.88 0.2 +0.4 0.88 0.2 +0.42 0.88 0.2 +0.44 0.88 0.2 +0.46 0.88 0.2 +0.48 0.88 0.2 +0.5 0.88 0.2 +0.52 0.88 0.2 +0.54 0.88 0.2 +0.56 0.88 0.2 +0.58 0.88 0.2 +0.6 0.88 0.2 +0.62 0.88 0.2 +0.4 0.1 0.22 +0.42 0.1 0.22 +0.44 0.1 0.22 +0.46 0.1 0.22 +0.48 0.1 0.22 +0.5 0.1 0.22 +0.52 0.1 0.22 +0.54 0.1 0.22 +0.56 0.1 0.22 +0.58 0.1 0.22 +0.6 0.1 0.22 +0.34 0.12 0.22 +0.36 0.12 0.22 +0.38 0.12 0.22 +0.4 0.12 0.22 +0.42 0.12 0.22 +0.44 0.12 0.22 +0.46 0.12 0.22 +0.48 0.12 0.22 +0.5 0.12 0.22 +0.52 0.12 0.22 +0.54 0.12 0.22 +0.56 0.12 0.22 +0.58 0.12 0.22 +0.6 0.12 0.22 +0.62 0.12 0.22 +0.64 0.12 0.22 +0.66 0.12 0.22 +0.3 0.14 0.22 +0.32 0.14 0.22 +0.34 0.14 0.22 +0.36 0.14 0.22 +0.38 0.14 0.22 +0.4 0.14 0.22 +0.42 0.14 0.22 +0.44 0.14 0.22 +0.46 0.14 0.22 +0.48 0.14 0.22 +0.5 0.14 0.22 +0.52 0.14 0.22 +0.54 0.14 0.22 +0.56 0.14 0.22 +0.58 0.14 0.22 +0.6 0.14 0.22 +0.62 0.14 0.22 +0.64 0.14 0.22 +0.66 0.14 0.22 +0.68 0.14 0.22 +0.7 0.14 0.22 +0.28 0.16 0.22 +0.3 0.16 0.22 +0.32 0.16 0.22 +0.34 0.16 0.22 +0.36 0.16 0.22 +0.38 0.16 0.22 +0.4 0.16 0.22 +0.6 0.16 0.22 +0.62 0.16 0.22 +0.64 0.16 0.22 +0.66 0.16 0.22 +0.68 0.16 0.22 +0.7 0.16 0.22 +0.72 0.16 0.22 +0.24 0.18 0.22 +0.26 0.18 0.22 +0.28 0.18 0.22 +0.3 0.18 0.22 +0.32 0.18 0.22 +0.34 0.18 0.22 +0.66 0.18 0.22 +0.68 0.18 0.22 +0.7 0.18 0.22 +0.72 0.18 0.22 +0.74 0.18 0.22 +0.76 0.18 0.22 +0.22 0.2 0.22 +0.24 0.2 0.22 +0.26 0.2 0.22 +0.28 0.2 0.22 +0.3 0.2 0.22 +0.7 0.2 0.22 +0.72 0.2 0.22 +0.74 0.2 0.22 +0.76 0.2 0.22 +0.78 0.2 0.22 +0.2 0.22 0.22 +0.22 0.22 0.22 +0.24 0.22 0.22 +0.26 0.22 0.22 +0.28 0.22 0.22 +0.72 0.22 0.22 +0.74 0.22 0.22 +0.76 0.22 0.22 +0.78 0.22 0.22 +0.8 0.22 0.22 +0.18 0.24 0.22 +0.2 0.24 0.22 +0.22 0.24 0.22 +0.24 0.24 0.22 +0.26 0.24 0.22 +0.74 0.24 0.22 +0.76 0.24 0.22 +0.78 0.24 0.22 +0.8 0.24 0.22 +0.82 0.24 0.22 +0.18 0.26 0.22 +0.2 0.26 0.22 +0.22 0.26 0.22 +0.24 0.26 0.22 +0.76 0.26 0.22 +0.78 0.26 0.22 +0.8 0.26 0.22 +0.82 0.26 0.22 +0.16 0.28 0.22 +0.18 0.28 0.22 +0.2 0.28 0.22 +0.22 0.28 0.22 +0.78 0.28 0.22 +0.8 0.28 0.22 +0.82 0.28 0.22 +0.84 0.28 0.22 +0.14 0.3 0.22 +0.16 0.3 0.22 +0.18 0.3 0.22 +0.2 0.3 0.22 +0.8 0.3 0.22 +0.82 0.3 0.22 +0.84 0.3 0.22 +0.86 0.3 0.22 +0.14 0.32 0.22 +0.16 0.32 0.22 +0.18 0.32 0.22 +0.82 0.32 0.22 +0.84 0.32 0.22 +0.86 0.32 0.22 +0.12 0.34 0.22 +0.14 0.34 0.22 +0.16 0.34 0.22 +0.18 0.34 0.22 +0.82 0.34 0.22 +0.84 0.34 0.22 +0.86 0.34 0.22 +0.88 0.34 0.22 +0.12 0.36 0.22 +0.14 0.36 0.22 +0.16 0.36 0.22 +0.84 0.36 0.22 +0.86 0.36 0.22 +0.88 0.36 0.22 +0.12 0.38 0.22 +0.14 0.38 0.22 +0.16 0.38 0.22 +0.84 0.38 0.22 +0.86 0.38 0.22 +0.88 0.38 0.22 +0.1 0.4 0.22 +0.12 0.4 0.22 +0.14 0.4 0.22 +0.16 0.4 0.22 +0.84 0.4 0.22 +0.86 0.4 0.22 +0.88 0.4 0.22 +0.9 0.4 0.22 +0.1 0.42 0.22 +0.12 0.42 0.22 +0.14 0.42 0.22 +0.86 0.42 0.22 +0.88 0.42 0.22 +0.9 0.42 0.22 +0.1 0.44 0.22 +0.12 0.44 0.22 +0.14 0.44 0.22 +0.86 0.44 0.22 +0.88 0.44 0.22 +0.9 0.44 0.22 +0.1 0.46 0.22 +0.12 0.46 0.22 +0.14 0.46 0.22 +0.86 0.46 0.22 +0.88 0.46 0.22 +0.9 0.46 0.22 +0.1 0.48 0.22 +0.12 0.48 0.22 +0.14 0.48 0.22 +0.86 0.48 0.22 +0.88 0.48 0.22 +0.9 0.48 0.22 +0.1 0.5 0.22 +0.12 0.5 0.22 +0.14 0.5 0.22 +0.86 0.5 0.22 +0.88 0.5 0.22 +0.9 0.5 0.22 +0.1 0.52 0.22 +0.12 0.52 0.22 +0.14 0.52 0.22 +0.86 0.52 0.22 +0.88 0.52 0.22 +0.9 0.52 0.22 +0.1 0.54 0.22 +0.12 0.54 0.22 +0.14 0.54 0.22 +0.86 0.54 0.22 +0.88 0.54 0.22 +0.9 0.54 0.22 +0.1 0.56 0.22 +0.12 0.56 0.22 +0.14 0.56 0.22 +0.86 0.56 0.22 +0.88 0.56 0.22 +0.9 0.56 0.22 +0.1 0.58 0.22 +0.12 0.58 0.22 +0.14 0.58 0.22 +0.86 0.58 0.22 +0.88 0.58 0.22 +0.9 0.58 0.22 +0.1 0.6 0.22 +0.12 0.6 0.22 +0.14 0.6 0.22 +0.16 0.6 0.22 +0.84 0.6 0.22 +0.86 0.6 0.22 +0.88 0.6 0.22 +0.9 0.6 0.22 +0.12 0.62 0.22 +0.14 0.62 0.22 +0.16 0.62 0.22 +0.84 0.62 0.22 +0.86 0.62 0.22 +0.88 0.62 0.22 +0.12 0.64 0.22 +0.14 0.64 0.22 +0.16 0.64 0.22 +0.84 0.64 0.22 +0.86 0.64 0.22 +0.88 0.64 0.22 +0.12 0.66 0.22 +0.14 0.66 0.22 +0.16 0.66 0.22 +0.18 0.66 0.22 +0.82 0.66 0.22 +0.84 0.66 0.22 +0.86 0.66 0.22 +0.88 0.66 0.22 +0.14 0.68 0.22 +0.16 0.68 0.22 +0.18 0.68 0.22 +0.82 0.68 0.22 +0.84 0.68 0.22 +0.86 0.68 0.22 +0.14 0.7 0.22 +0.16 0.7 0.22 +0.18 0.7 0.22 +0.2 0.7 0.22 +0.8 0.7 0.22 +0.82 0.7 0.22 +0.84 0.7 0.22 +0.86 0.7 0.22 +0.16 0.72 0.22 +0.18 0.72 0.22 +0.2 0.72 0.22 +0.22 0.72 0.22 +0.78 0.72 0.22 +0.8 0.72 0.22 +0.82 0.72 0.22 +0.84 0.72 0.22 +0.18 0.74 0.22 +0.2 0.74 0.22 +0.22 0.74 0.22 +0.24 0.74 0.22 +0.76 0.74 0.22 +0.78 0.74 0.22 +0.8 0.74 0.22 +0.82 0.74 0.22 +0.18 0.76 0.22 +0.2 0.76 0.22 +0.22 0.76 0.22 +0.24 0.76 0.22 +0.26 0.76 0.22 +0.74 0.76 0.22 +0.76 0.76 0.22 +0.78 0.76 0.22 +0.8 0.76 0.22 +0.82 0.76 0.22 +0.2 0.78 0.22 +0.22 0.78 0.22 +0.24 0.78 0.22 +0.26 0.78 0.22 +0.28 0.78 0.22 +0.72 0.78 0.22 +0.74 0.78 0.22 +0.76 0.78 0.22 +0.78 0.78 0.22 +0.8 0.78 0.22 +0.22 0.8 0.22 +0.24 0.8 0.22 +0.26 0.8 0.22 +0.28 0.8 0.22 +0.3 0.8 0.22 +0.7 0.8 0.22 +0.72 0.8 0.22 +0.74 0.8 0.22 +0.76 0.8 0.22 +0.78 0.8 0.22 +0.24 0.82 0.22 +0.26 0.82 0.22 +0.28 0.82 0.22 +0.3 0.82 0.22 +0.32 0.82 0.22 +0.34 0.82 0.22 +0.66 0.82 0.22 +0.68 0.82 0.22 +0.7 0.82 0.22 +0.72 0.82 0.22 +0.74 0.82 0.22 +0.76 0.82 0.22 +0.28 0.84 0.22 +0.3 0.84 0.22 +0.32 0.84 0.22 +0.34 0.84 0.22 +0.36 0.84 0.22 +0.38 0.84 0.22 +0.4 0.84 0.22 +0.6 0.84 0.22 +0.62 0.84 0.22 +0.64 0.84 0.22 +0.66 0.84 0.22 +0.68 0.84 0.22 +0.7 0.84 0.22 +0.72 0.84 0.22 +0.3 0.86 0.22 +0.32 0.86 0.22 +0.34 0.86 0.22 +0.36 0.86 0.22 +0.38 0.86 0.22 +0.4 0.86 0.22 +0.42 0.86 0.22 +0.44 0.86 0.22 +0.46 0.86 0.22 +0.48 0.86 0.22 +0.5 0.86 0.22 +0.52 0.86 0.22 +0.54 0.86 0.22 +0.56 0.86 0.22 +0.58 0.86 0.22 +0.6 0.86 0.22 +0.62 0.86 0.22 +0.64 0.86 0.22 +0.66 0.86 0.22 +0.68 0.86 0.22 +0.7 0.86 0.22 +0.34 0.88 0.22 +0.36 0.88 0.22 +0.38 0.88 0.22 +0.4 0.88 0.22 +0.42 0.88 0.22 +0.44 0.88 0.22 +0.46 0.88 0.22 +0.48 0.88 0.22 +0.5 0.88 0.22 +0.52 0.88 0.22 +0.54 0.88 0.22 +0.56 0.88 0.22 +0.58 0.88 0.22 +0.6 0.88 0.22 +0.62 0.88 0.22 +0.64 0.88 0.22 +0.66 0.88 0.22 +0.4 0.9 0.22 +0.42 0.9 0.22 +0.44 0.9 0.22 +0.46 0.9 0.22 +0.48 0.9 0.22 +0.5 0.9 0.22 +0.52 0.9 0.22 +0.54 0.9 0.22 +0.56 0.9 0.22 +0.58 0.9 0.22 +0.6 0.9 0.22 +0.44 0.08 0.24 +0.46 0.08 0.24 +0.48 0.08 0.24 +0.5 0.08 0.24 +0.52 0.08 0.24 +0.54 0.08 0.24 +0.56 0.08 0.24 +0.36 0.1 0.24 +0.38 0.1 0.24 +0.4 0.1 0.24 +0.42 0.1 0.24 +0.44 0.1 0.24 +0.46 0.1 0.24 +0.48 0.1 0.24 +0.5 0.1 0.24 +0.52 0.1 0.24 +0.54 0.1 0.24 +0.56 0.1 0.24 +0.58 0.1 0.24 +0.6 0.1 0.24 +0.62 0.1 0.24 +0.64 0.1 0.24 +0.32 0.12 0.24 +0.34 0.12 0.24 +0.36 0.12 0.24 +0.38 0.12 0.24 +0.4 0.12 0.24 +0.42 0.12 0.24 +0.44 0.12 0.24 +0.46 0.12 0.24 +0.48 0.12 0.24 +0.5 0.12 0.24 +0.52 0.12 0.24 +0.54 0.12 0.24 +0.56 0.12 0.24 +0.58 0.12 0.24 +0.6 0.12 0.24 +0.62 0.12 0.24 +0.64 0.12 0.24 +0.66 0.12 0.24 +0.68 0.12 0.24 +0.28 0.14 0.24 +0.3 0.14 0.24 +0.32 0.14 0.24 +0.34 0.14 0.24 +0.36 0.14 0.24 +0.38 0.14 0.24 +0.4 0.14 0.24 +0.42 0.14 0.24 +0.58 0.14 0.24 +0.6 0.14 0.24 +0.62 0.14 0.24 +0.64 0.14 0.24 +0.66 0.14 0.24 +0.68 0.14 0.24 +0.7 0.14 0.24 +0.72 0.14 0.24 +0.26 0.16 0.24 +0.28 0.16 0.24 +0.3 0.16 0.24 +0.32 0.16 0.24 +0.34 0.16 0.24 +0.36 0.16 0.24 +0.64 0.16 0.24 +0.66 0.16 0.24 +0.68 0.16 0.24 +0.7 0.16 0.24 +0.72 0.16 0.24 +0.74 0.16 0.24 +0.22 0.18 0.24 +0.24 0.18 0.24 +0.26 0.18 0.24 +0.28 0.18 0.24 +0.3 0.18 0.24 +0.7 0.18 0.24 +0.72 0.18 0.24 +0.74 0.18 0.24 +0.76 0.18 0.24 +0.78 0.18 0.24 +0.2 0.2 0.24 +0.22 0.2 0.24 +0.24 0.2 0.24 +0.26 0.2 0.24 +0.28 0.2 0.24 +0.72 0.2 0.24 +0.74 0.2 0.24 +0.76 0.2 0.24 +0.78 0.2 0.24 +0.8 0.2 0.24 +0.18 0.22 0.24 +0.2 0.22 0.24 +0.22 0.22 0.24 +0.24 0.22 0.24 +0.26 0.22 0.24 +0.74 0.22 0.24 +0.76 0.22 0.24 +0.78 0.22 0.24 +0.8 0.22 0.24 +0.82 0.22 0.24 +0.18 0.24 0.24 +0.2 0.24 0.24 +0.22 0.24 0.24 +0.24 0.24 0.24 +0.76 0.24 0.24 +0.78 0.24 0.24 +0.8 0.24 0.24 +0.82 0.24 0.24 +0.16 0.26 0.24 +0.18 0.26 0.24 +0.2 0.26 0.24 +0.22 0.26 0.24 +0.78 0.26 0.24 +0.8 0.26 0.24 +0.82 0.26 0.24 +0.84 0.26 0.24 +0.14 0.28 0.24 +0.16 0.28 0.24 +0.18 0.28 0.24 +0.2 0.28 0.24 +0.8 0.28 0.24 +0.82 0.28 0.24 +0.84 0.28 0.24 +0.86 0.28 0.24 +0.14 0.3 0.24 +0.16 0.3 0.24 +0.18 0.3 0.24 +0.82 0.3 0.24 +0.84 0.3 0.24 +0.86 0.3 0.24 +0.12 0.32 0.24 +0.14 0.32 0.24 +0.16 0.32 0.24 +0.84 0.32 0.24 +0.86 0.32 0.24 +0.88 0.32 0.24 +0.12 0.34 0.24 +0.14 0.34 0.24 +0.16 0.34 0.24 +0.84 0.34 0.24 +0.86 0.34 0.24 +0.88 0.34 0.24 +0.1 0.36 0.24 +0.12 0.36 0.24 +0.14 0.36 0.24 +0.16 0.36 0.24 +0.84 0.36 0.24 +0.86 0.36 0.24 +0.88 0.36 0.24 +0.9 0.36 0.24 +0.1 0.38 0.24 +0.12 0.38 0.24 +0.14 0.38 0.24 +0.86 0.38 0.24 +0.88 0.38 0.24 +0.9 0.38 0.24 +0.1 0.4 0.24 +0.12 0.4 0.24 +0.14 0.4 0.24 +0.86 0.4 0.24 +0.88 0.4 0.24 +0.9 0.4 0.24 +0.1 0.42 0.24 +0.12 0.42 0.24 +0.14 0.42 0.24 +0.86 0.42 0.24 +0.88 0.42 0.24 +0.9 0.42 0.24 +0.08 0.44 0.24 +0.1 0.44 0.24 +0.12 0.44 0.24 +0.88 0.44 0.24 +0.9 0.44 0.24 +0.92 0.44 0.24 +0.08 0.46 0.24 +0.1 0.46 0.24 +0.12 0.46 0.24 +0.88 0.46 0.24 +0.9 0.46 0.24 +0.92 0.46 0.24 +0.08 0.48 0.24 +0.1 0.48 0.24 +0.12 0.48 0.24 +0.88 0.48 0.24 +0.9 0.48 0.24 +0.92 0.48 0.24 +0.08 0.5 0.24 +0.1 0.5 0.24 +0.12 0.5 0.24 +0.88 0.5 0.24 +0.9 0.5 0.24 +0.92 0.5 0.24 +0.08 0.52 0.24 +0.1 0.52 0.24 +0.12 0.52 0.24 +0.88 0.52 0.24 +0.9 0.52 0.24 +0.92 0.52 0.24 +0.08 0.54 0.24 +0.1 0.54 0.24 +0.12 0.54 0.24 +0.88 0.54 0.24 +0.9 0.54 0.24 +0.92 0.54 0.24 +0.08 0.56 0.24 +0.1 0.56 0.24 +0.12 0.56 0.24 +0.88 0.56 0.24 +0.9 0.56 0.24 +0.92 0.56 0.24 +0.1 0.58 0.24 +0.12 0.58 0.24 +0.14 0.58 0.24 +0.86 0.58 0.24 +0.88 0.58 0.24 +0.9 0.58 0.24 +0.1 0.6 0.24 +0.12 0.6 0.24 +0.14 0.6 0.24 +0.86 0.6 0.24 +0.88 0.6 0.24 +0.9 0.6 0.24 +0.1 0.62 0.24 +0.12 0.62 0.24 +0.14 0.62 0.24 +0.86 0.62 0.24 +0.88 0.62 0.24 +0.9 0.62 0.24 +0.1 0.64 0.24 +0.12 0.64 0.24 +0.14 0.64 0.24 +0.16 0.64 0.24 +0.84 0.64 0.24 +0.86 0.64 0.24 +0.88 0.64 0.24 +0.9 0.64 0.24 +0.12 0.66 0.24 +0.14 0.66 0.24 +0.16 0.66 0.24 +0.84 0.66 0.24 +0.86 0.66 0.24 +0.88 0.66 0.24 +0.12 0.68 0.24 +0.14 0.68 0.24 +0.16 0.68 0.24 +0.84 0.68 0.24 +0.86 0.68 0.24 +0.88 0.68 0.24 +0.14 0.7 0.24 +0.16 0.7 0.24 +0.18 0.7 0.24 +0.82 0.7 0.24 +0.84 0.7 0.24 +0.86 0.7 0.24 +0.14 0.72 0.24 +0.16 0.72 0.24 +0.18 0.72 0.24 +0.2 0.72 0.24 +0.8 0.72 0.24 +0.82 0.72 0.24 +0.84 0.72 0.24 +0.86 0.72 0.24 +0.16 0.74 0.24 +0.18 0.74 0.24 +0.2 0.74 0.24 +0.22 0.74 0.24 +0.78 0.74 0.24 +0.8 0.74 0.24 +0.82 0.74 0.24 +0.84 0.74 0.24 +0.18 0.76 0.24 +0.2 0.76 0.24 +0.22 0.76 0.24 +0.24 0.76 0.24 +0.76 0.76 0.24 +0.78 0.76 0.24 +0.8 0.76 0.24 +0.82 0.76 0.24 +0.18 0.78 0.24 +0.2 0.78 0.24 +0.22 0.78 0.24 +0.24 0.78 0.24 +0.26 0.78 0.24 +0.74 0.78 0.24 +0.76 0.78 0.24 +0.78 0.78 0.24 +0.8 0.78 0.24 +0.82 0.78 0.24 +0.2 0.8 0.24 +0.22 0.8 0.24 +0.24 0.8 0.24 +0.26 0.8 0.24 +0.28 0.8 0.24 +0.72 0.8 0.24 +0.74 0.8 0.24 +0.76 0.8 0.24 +0.78 0.8 0.24 +0.8 0.8 0.24 +0.22 0.82 0.24 +0.24 0.82 0.24 +0.26 0.82 0.24 +0.28 0.82 0.24 +0.3 0.82 0.24 +0.7 0.82 0.24 +0.72 0.82 0.24 +0.74 0.82 0.24 +0.76 0.82 0.24 +0.78 0.82 0.24 +0.26 0.84 0.24 +0.28 0.84 0.24 +0.3 0.84 0.24 +0.32 0.84 0.24 +0.34 0.84 0.24 +0.36 0.84 0.24 +0.64 0.84 0.24 +0.66 0.84 0.24 +0.68 0.84 0.24 +0.7 0.84 0.24 +0.72 0.84 0.24 +0.74 0.84 0.24 +0.28 0.86 0.24 +0.3 0.86 0.24 +0.32 0.86 0.24 +0.34 0.86 0.24 +0.36 0.86 0.24 +0.38 0.86 0.24 +0.4 0.86 0.24 +0.42 0.86 0.24 +0.58 0.86 0.24 +0.6 0.86 0.24 +0.62 0.86 0.24 +0.64 0.86 0.24 +0.66 0.86 0.24 +0.68 0.86 0.24 +0.7 0.86 0.24 +0.72 0.86 0.24 +0.32 0.88 0.24 +0.34 0.88 0.24 +0.36 0.88 0.24 +0.38 0.88 0.24 +0.4 0.88 0.24 +0.42 0.88 0.24 +0.44 0.88 0.24 +0.46 0.88 0.24 +0.48 0.88 0.24 +0.5 0.88 0.24 +0.52 0.88 0.24 +0.54 0.88 0.24 +0.56 0.88 0.24 +0.58 0.88 0.24 +0.6 0.88 0.24 +0.62 0.88 0.24 +0.64 0.88 0.24 +0.66 0.88 0.24 +0.68 0.88 0.24 +0.36 0.9 0.24 +0.38 0.9 0.24 +0.4 0.9 0.24 +0.42 0.9 0.24 +0.44 0.9 0.24 +0.46 0.9 0.24 +0.48 0.9 0.24 +0.5 0.9 0.24 +0.52 0.9 0.24 +0.54 0.9 0.24 +0.56 0.9 0.24 +0.58 0.9 0.24 +0.6 0.9 0.24 +0.62 0.9 0.24 +0.64 0.9 0.24 +0.44 0.92 0.24 +0.46 0.92 0.24 +0.48 0.92 0.24 +0.5 0.92 0.24 +0.52 0.92 0.24 +0.54 0.92 0.24 +0.56 0.92 0.24 +0.38 0.08 0.26 +0.4 0.08 0.26 +0.42 0.08 0.26 +0.44 0.08 0.26 +0.46 0.08 0.26 +0.48 0.08 0.26 +0.5 0.08 0.26 +0.52 0.08 0.26 +0.54 0.08 0.26 +0.56 0.08 0.26 +0.58 0.08 0.26 +0.6 0.08 0.26 +0.62 0.08 0.26 +0.34 0.1 0.26 +0.36 0.1 0.26 +0.38 0.1 0.26 +0.4 0.1 0.26 +0.42 0.1 0.26 +0.44 0.1 0.26 +0.46 0.1 0.26 +0.48 0.1 0.26 +0.5 0.1 0.26 +0.52 0.1 0.26 +0.54 0.1 0.26 +0.56 0.1 0.26 +0.58 0.1 0.26 +0.6 0.1 0.26 +0.62 0.1 0.26 +0.64 0.1 0.26 +0.66 0.1 0.26 +0.3 0.12 0.26 +0.32 0.12 0.26 +0.34 0.12 0.26 +0.36 0.12 0.26 +0.38 0.12 0.26 +0.4 0.12 0.26 +0.42 0.12 0.26 +0.44 0.12 0.26 +0.46 0.12 0.26 +0.54 0.12 0.26 +0.56 0.12 0.26 +0.58 0.12 0.26 +0.6 0.12 0.26 +0.62 0.12 0.26 +0.64 0.12 0.26 +0.66 0.12 0.26 +0.68 0.12 0.26 +0.7 0.12 0.26 +0.26 0.14 0.26 +0.28 0.14 0.26 +0.3 0.14 0.26 +0.32 0.14 0.26 +0.34 0.14 0.26 +0.36 0.14 0.26 +0.64 0.14 0.26 +0.66 0.14 0.26 +0.68 0.14 0.26 +0.7 0.14 0.26 +0.72 0.14 0.26 +0.74 0.14 0.26 +0.24 0.16 0.26 +0.26 0.16 0.26 +0.28 0.16 0.26 +0.3 0.16 0.26 +0.32 0.16 0.26 +0.68 0.16 0.26 +0.7 0.16 0.26 +0.72 0.16 0.26 +0.74 0.16 0.26 +0.76 0.16 0.26 +0.22 0.18 0.26 +0.24 0.18 0.26 +0.26 0.18 0.26 +0.28 0.18 0.26 +0.72 0.18 0.26 +0.74 0.18 0.26 +0.76 0.18 0.26 +0.78 0.18 0.26 +0.2 0.2 0.26 +0.22 0.2 0.26 +0.24 0.2 0.26 +0.26 0.2 0.26 +0.74 0.2 0.26 +0.76 0.2 0.26 +0.78 0.2 0.26 +0.8 0.2 0.26 +0.18 0.22 0.26 +0.2 0.22 0.26 +0.22 0.22 0.26 +0.24 0.22 0.26 +0.76 0.22 0.26 +0.78 0.22 0.26 +0.8 0.22 0.26 +0.82 0.22 0.26 +0.16 0.24 0.26 +0.18 0.24 0.26 +0.2 0.24 0.26 +0.22 0.24 0.26 +0.78 0.24 0.26 +0.8 0.24 0.26 +0.82 0.24 0.26 +0.84 0.24 0.26 +0.14 0.26 0.26 +0.16 0.26 0.26 +0.18 0.26 0.26 +0.2 0.26 0.26 +0.8 0.26 0.26 +0.82 0.26 0.26 +0.84 0.26 0.26 +0.86 0.26 0.26 +0.14 0.28 0.26 +0.16 0.28 0.26 +0.18 0.28 0.26 +0.82 0.28 0.26 +0.84 0.28 0.26 +0.86 0.28 0.26 +0.12 0.3 0.26 +0.14 0.3 0.26 +0.16 0.3 0.26 +0.84 0.3 0.26 +0.86 0.3 0.26 +0.88 0.3 0.26 +0.12 0.32 0.26 +0.14 0.32 0.26 +0.16 0.32 0.26 +0.84 0.32 0.26 +0.86 0.32 0.26 +0.88 0.32 0.26 +0.1 0.34 0.26 +0.12 0.34 0.26 +0.14 0.34 0.26 +0.86 0.34 0.26 +0.88 0.34 0.26 +0.9 0.34 0.26 +0.1 0.36 0.26 +0.12 0.36 0.26 +0.14 0.36 0.26 +0.86 0.36 0.26 +0.88 0.36 0.26 +0.9 0.36 0.26 +0.08 0.38 0.26 +0.1 0.38 0.26 +0.12 0.38 0.26 +0.88 0.38 0.26 +0.9 0.38 0.26 +0.92 0.38 0.26 +0.08 0.4 0.26 +0.1 0.4 0.26 +0.12 0.4 0.26 +0.88 0.4 0.26 +0.9 0.4 0.26 +0.92 0.4 0.26 +0.08 0.42 0.26 +0.1 0.42 0.26 +0.12 0.42 0.26 +0.88 0.42 0.26 +0.9 0.42 0.26 +0.92 0.42 0.26 +0.08 0.44 0.26 +0.1 0.44 0.26 +0.12 0.44 0.26 +0.88 0.44 0.26 +0.9 0.44 0.26 +0.92 0.44 0.26 +0.08 0.46 0.26 +0.1 0.46 0.26 +0.12 0.46 0.26 +0.88 0.46 0.26 +0.9 0.46 0.26 +0.92 0.46 0.26 +0.08 0.48 0.26 +0.1 0.48 0.26 +0.9 0.48 0.26 +0.92 0.48 0.26 +0.08 0.5 0.26 +0.1 0.5 0.26 +0.9 0.5 0.26 +0.92 0.5 0.26 +0.08 0.52 0.26 +0.1 0.52 0.26 +0.9 0.52 0.26 +0.92 0.52 0.26 +0.08 0.54 0.26 +0.1 0.54 0.26 +0.12 0.54 0.26 +0.88 0.54 0.26 +0.9 0.54 0.26 +0.92 0.54 0.26 +0.08 0.56 0.26 +0.1 0.56 0.26 +0.12 0.56 0.26 +0.88 0.56 0.26 +0.9 0.56 0.26 +0.92 0.56 0.26 +0.08 0.58 0.26 +0.1 0.58 0.26 +0.12 0.58 0.26 +0.88 0.58 0.26 +0.9 0.58 0.26 +0.92 0.58 0.26 +0.08 0.6 0.26 +0.1 0.6 0.26 +0.12 0.6 0.26 +0.88 0.6 0.26 +0.9 0.6 0.26 +0.92 0.6 0.26 +0.08 0.62 0.26 +0.1 0.62 0.26 +0.12 0.62 0.26 +0.88 0.62 0.26 +0.9 0.62 0.26 +0.92 0.62 0.26 +0.1 0.64 0.26 +0.12 0.64 0.26 +0.14 0.64 0.26 +0.86 0.64 0.26 +0.88 0.64 0.26 +0.9 0.64 0.26 +0.1 0.66 0.26 +0.12 0.66 0.26 +0.14 0.66 0.26 +0.86 0.66 0.26 +0.88 0.66 0.26 +0.9 0.66 0.26 +0.12 0.68 0.26 +0.14 0.68 0.26 +0.16 0.68 0.26 +0.84 0.68 0.26 +0.86 0.68 0.26 +0.88 0.68 0.26 +0.12 0.7 0.26 +0.14 0.7 0.26 +0.16 0.7 0.26 +0.84 0.7 0.26 +0.86 0.7 0.26 +0.88 0.7 0.26 +0.14 0.72 0.26 +0.16 0.72 0.26 +0.18 0.72 0.26 +0.82 0.72 0.26 +0.84 0.72 0.26 +0.86 0.72 0.26 +0.14 0.74 0.26 +0.16 0.74 0.26 +0.18 0.74 0.26 +0.2 0.74 0.26 +0.8 0.74 0.26 +0.82 0.74 0.26 +0.84 0.74 0.26 +0.86 0.74 0.26 +0.16 0.76 0.26 +0.18 0.76 0.26 +0.2 0.76 0.26 +0.22 0.76 0.26 +0.78 0.76 0.26 +0.8 0.76 0.26 +0.82 0.76 0.26 +0.84 0.76 0.26 +0.18 0.78 0.26 +0.2 0.78 0.26 +0.22 0.78 0.26 +0.24 0.78 0.26 +0.76 0.78 0.26 +0.78 0.78 0.26 +0.8 0.78 0.26 +0.82 0.78 0.26 +0.2 0.8 0.26 +0.22 0.8 0.26 +0.24 0.8 0.26 +0.26 0.8 0.26 +0.74 0.8 0.26 +0.76 0.8 0.26 +0.78 0.8 0.26 +0.8 0.8 0.26 +0.22 0.82 0.26 +0.24 0.82 0.26 +0.26 0.82 0.26 +0.28 0.82 0.26 +0.72 0.82 0.26 +0.74 0.82 0.26 +0.76 0.82 0.26 +0.78 0.82 0.26 +0.24 0.84 0.26 +0.26 0.84 0.26 +0.28 0.84 0.26 +0.3 0.84 0.26 +0.32 0.84 0.26 +0.68 0.84 0.26 +0.7 0.84 0.26 +0.72 0.84 0.26 +0.74 0.84 0.26 +0.76 0.84 0.26 +0.26 0.86 0.26 +0.28 0.86 0.26 +0.3 0.86 0.26 +0.32 0.86 0.26 +0.34 0.86 0.26 +0.36 0.86 0.26 +0.64 0.86 0.26 +0.66 0.86 0.26 +0.68 0.86 0.26 +0.7 0.86 0.26 +0.72 0.86 0.26 +0.74 0.86 0.26 +0.3 0.88 0.26 +0.32 0.88 0.26 +0.34 0.88 0.26 +0.36 0.88 0.26 +0.38 0.88 0.26 +0.4 0.88 0.26 +0.42 0.88 0.26 +0.44 0.88 0.26 +0.46 0.88 0.26 +0.54 0.88 0.26 +0.56 0.88 0.26 +0.58 0.88 0.26 +0.6 0.88 0.26 +0.62 0.88 0.26 +0.64 0.88 0.26 +0.66 0.88 0.26 +0.68 0.88 0.26 +0.7 0.88 0.26 +0.34 0.9 0.26 +0.36 0.9 0.26 +0.38 0.9 0.26 +0.4 0.9 0.26 +0.42 0.9 0.26 +0.44 0.9 0.26 +0.46 0.9 0.26 +0.48 0.9 0.26 +0.5 0.9 0.26 +0.52 0.9 0.26 +0.54 0.9 0.26 +0.56 0.9 0.26 +0.58 0.9 0.26 +0.6 0.9 0.26 +0.62 0.9 0.26 +0.64 0.9 0.26 +0.66 0.9 0.26 +0.38 0.92 0.26 +0.4 0.92 0.26 +0.42 0.92 0.26 +0.44 0.92 0.26 +0.46 0.92 0.26 +0.48 0.92 0.26 +0.5 0.92 0.26 +0.52 0.92 0.26 +0.54 0.92 0.26 +0.56 0.92 0.26 +0.58 0.92 0.26 +0.6 0.92 0.26 +0.62 0.92 0.26 +0.42 0.06 0.28 +0.44 0.06 0.28 +0.46 0.06 0.28 +0.48 0.06 0.28 +0.5 0.06 0.28 +0.52 0.06 0.28 +0.54 0.06 0.28 +0.56 0.06 0.28 +0.58 0.06 0.28 +0.36 0.08 0.28 +0.38 0.08 0.28 +0.4 0.08 0.28 +0.42 0.08 0.28 +0.44 0.08 0.28 +0.46 0.08 0.28 +0.48 0.08 0.28 +0.5 0.08 0.28 +0.52 0.08 0.28 +0.54 0.08 0.28 +0.56 0.08 0.28 +0.58 0.08 0.28 +0.6 0.08 0.28 +0.62 0.08 0.28 +0.64 0.08 0.28 +0.3 0.1 0.28 +0.32 0.1 0.28 +0.34 0.1 0.28 +0.36 0.1 0.28 +0.38 0.1 0.28 +0.4 0.1 0.28 +0.42 0.1 0.28 +0.44 0.1 0.28 +0.46 0.1 0.28 +0.48 0.1 0.28 +0.5 0.1 0.28 +0.52 0.1 0.28 +0.54 0.1 0.28 +0.56 0.1 0.28 +0.58 0.1 0.28 +0.6 0.1 0.28 +0.62 0.1 0.28 +0.64 0.1 0.28 +0.66 0.1 0.28 +0.68 0.1 0.28 +0.7 0.1 0.28 +0.28 0.12 0.28 +0.3 0.12 0.28 +0.32 0.12 0.28 +0.34 0.12 0.28 +0.36 0.12 0.28 +0.38 0.12 0.28 +0.4 0.12 0.28 +0.6 0.12 0.28 +0.62 0.12 0.28 +0.64 0.12 0.28 +0.66 0.12 0.28 +0.68 0.12 0.28 +0.7 0.12 0.28 +0.72 0.12 0.28 +0.24 0.14 0.28 +0.26 0.14 0.28 +0.28 0.14 0.28 +0.3 0.14 0.28 +0.32 0.14 0.28 +0.34 0.14 0.28 +0.66 0.14 0.28 +0.68 0.14 0.28 +0.7 0.14 0.28 +0.72 0.14 0.28 +0.74 0.14 0.28 +0.76 0.14 0.28 +0.22 0.16 0.28 +0.24 0.16 0.28 +0.26 0.16 0.28 +0.28 0.16 0.28 +0.3 0.16 0.28 +0.7 0.16 0.28 +0.72 0.16 0.28 +0.74 0.16 0.28 +0.76 0.16 0.28 +0.78 0.16 0.28 +0.2 0.18 0.28 +0.22 0.18 0.28 +0.24 0.18 0.28 +0.26 0.18 0.28 +0.74 0.18 0.28 +0.76 0.18 0.28 +0.78 0.18 0.28 +0.8 0.18 0.28 +0.18 0.2 0.28 +0.2 0.2 0.28 +0.22 0.2 0.28 +0.24 0.2 0.28 +0.76 0.2 0.28 +0.78 0.2 0.28 +0.8 0.2 0.28 +0.82 0.2 0.28 +0.16 0.22 0.28 +0.18 0.22 0.28 +0.2 0.22 0.28 +0.22 0.22 0.28 +0.78 0.22 0.28 +0.8 0.22 0.28 +0.82 0.22 0.28 +0.84 0.22 0.28 +0.14 0.24 0.28 +0.16 0.24 0.28 +0.18 0.24 0.28 +0.2 0.24 0.28 +0.8 0.24 0.28 +0.82 0.24 0.28 +0.84 0.24 0.28 +0.86 0.24 0.28 +0.14 0.26 0.28 +0.16 0.26 0.28 +0.18 0.26 0.28 +0.82 0.26 0.28 +0.84 0.26 0.28 +0.86 0.26 0.28 +0.12 0.28 0.28 +0.14 0.28 0.28 +0.16 0.28 0.28 +0.84 0.28 0.28 +0.86 0.28 0.28 +0.88 0.28 0.28 +0.1 0.3 0.28 +0.12 0.3 0.28 +0.14 0.3 0.28 +0.16 0.3 0.28 +0.84 0.3 0.28 +0.86 0.3 0.28 +0.88 0.3 0.28 +0.9 0.3 0.28 +0.1 0.32 0.28 +0.12 0.32 0.28 +0.14 0.32 0.28 +0.86 0.32 0.28 +0.88 0.32 0.28 +0.9 0.32 0.28 +0.1 0.34 0.28 +0.12 0.34 0.28 +0.14 0.34 0.28 +0.86 0.34 0.28 +0.88 0.34 0.28 +0.9 0.34 0.28 +0.08 0.36 0.28 +0.1 0.36 0.28 +0.12 0.36 0.28 +0.88 0.36 0.28 +0.9 0.36 0.28 +0.92 0.36 0.28 +0.08 0.38 0.28 +0.1 0.38 0.28 +0.12 0.38 0.28 +0.88 0.38 0.28 +0.9 0.38 0.28 +0.92 0.38 0.28 +0.08 0.4 0.28 +0.1 0.4 0.28 +0.12 0.4 0.28 +0.88 0.4 0.28 +0.9 0.4 0.28 +0.92 0.4 0.28 +0.06 0.42 0.28 +0.08 0.42 0.28 +0.1 0.42 0.28 +0.9 0.42 0.28 +0.92 0.42 0.28 +0.94 0.42 0.28 +0.06 0.44 0.28 +0.08 0.44 0.28 +0.1 0.44 0.28 +0.9 0.44 0.28 +0.92 0.44 0.28 +0.94 0.44 0.28 +0.06 0.46 0.28 +0.08 0.46 0.28 +0.1 0.46 0.28 +0.9 0.46 0.28 +0.92 0.46 0.28 +0.94 0.46 0.28 +0.06 0.48 0.28 +0.08 0.48 0.28 +0.1 0.48 0.28 +0.9 0.48 0.28 +0.92 0.48 0.28 +0.94 0.48 0.28 +0.06 0.5 0.28 +0.08 0.5 0.28 +0.1 0.5 0.28 +0.9 0.5 0.28 +0.92 0.5 0.28 +0.94 0.5 0.28 +0.06 0.52 0.28 +0.08 0.52 0.28 +0.1 0.52 0.28 +0.9 0.52 0.28 +0.92 0.52 0.28 +0.94 0.52 0.28 +0.06 0.54 0.28 +0.08 0.54 0.28 +0.1 0.54 0.28 +0.9 0.54 0.28 +0.92 0.54 0.28 +0.94 0.54 0.28 +0.06 0.56 0.28 +0.08 0.56 0.28 +0.1 0.56 0.28 +0.9 0.56 0.28 +0.92 0.56 0.28 +0.94 0.56 0.28 +0.06 0.58 0.28 +0.08 0.58 0.28 +0.1 0.58 0.28 +0.9 0.58 0.28 +0.92 0.58 0.28 +0.94 0.58 0.28 +0.08 0.6 0.28 +0.1 0.6 0.28 +0.12 0.6 0.28 +0.88 0.6 0.28 +0.9 0.6 0.28 +0.92 0.6 0.28 +0.08 0.62 0.28 +0.1 0.62 0.28 +0.12 0.62 0.28 +0.88 0.62 0.28 +0.9 0.62 0.28 +0.92 0.62 0.28 +0.08 0.64 0.28 +0.1 0.64 0.28 +0.12 0.64 0.28 +0.88 0.64 0.28 +0.9 0.64 0.28 +0.92 0.64 0.28 +0.1 0.66 0.28 +0.12 0.66 0.28 +0.14 0.66 0.28 +0.86 0.66 0.28 +0.88 0.66 0.28 +0.9 0.66 0.28 +0.1 0.68 0.28 +0.12 0.68 0.28 +0.14 0.68 0.28 +0.86 0.68 0.28 +0.88 0.68 0.28 +0.9 0.68 0.28 +0.1 0.7 0.28 +0.12 0.7 0.28 +0.14 0.7 0.28 +0.16 0.7 0.28 +0.84 0.7 0.28 +0.86 0.7 0.28 +0.88 0.7 0.28 +0.9 0.7 0.28 +0.12 0.72 0.28 +0.14 0.72 0.28 +0.16 0.72 0.28 +0.84 0.72 0.28 +0.86 0.72 0.28 +0.88 0.72 0.28 +0.14 0.74 0.28 +0.16 0.74 0.28 +0.18 0.74 0.28 +0.82 0.74 0.28 +0.84 0.74 0.28 +0.86 0.74 0.28 +0.14 0.76 0.28 +0.16 0.76 0.28 +0.18 0.76 0.28 +0.2 0.76 0.28 +0.8 0.76 0.28 +0.82 0.76 0.28 +0.84 0.76 0.28 +0.86 0.76 0.28 +0.16 0.78 0.28 +0.18 0.78 0.28 +0.2 0.78 0.28 +0.22 0.78 0.28 +0.78 0.78 0.28 +0.8 0.78 0.28 +0.82 0.78 0.28 +0.84 0.78 0.28 +0.18 0.8 0.28 +0.2 0.8 0.28 +0.22 0.8 0.28 +0.24 0.8 0.28 +0.76 0.8 0.28 +0.78 0.8 0.28 +0.8 0.8 0.28 +0.82 0.8 0.28 +0.2 0.82 0.28 +0.22 0.82 0.28 +0.24 0.82 0.28 +0.26 0.82 0.28 +0.74 0.82 0.28 +0.76 0.82 0.28 +0.78 0.82 0.28 +0.8 0.82 0.28 +0.22 0.84 0.28 +0.24 0.84 0.28 +0.26 0.84 0.28 +0.28 0.84 0.28 +0.3 0.84 0.28 +0.7 0.84 0.28 +0.72 0.84 0.28 +0.74 0.84 0.28 +0.76 0.84 0.28 +0.78 0.84 0.28 +0.24 0.86 0.28 +0.26 0.86 0.28 +0.28 0.86 0.28 +0.3 0.86 0.28 +0.32 0.86 0.28 +0.34 0.86 0.28 +0.66 0.86 0.28 +0.68 0.86 0.28 +0.7 0.86 0.28 +0.72 0.86 0.28 +0.74 0.86 0.28 +0.76 0.86 0.28 +0.28 0.88 0.28 +0.3 0.88 0.28 +0.32 0.88 0.28 +0.34 0.88 0.28 +0.36 0.88 0.28 +0.38 0.88 0.28 +0.4 0.88 0.28 +0.6 0.88 0.28 +0.62 0.88 0.28 +0.64 0.88 0.28 +0.66 0.88 0.28 +0.68 0.88 0.28 +0.7 0.88 0.28 +0.72 0.88 0.28 +0.3 0.9 0.28 +0.32 0.9 0.28 +0.34 0.9 0.28 +0.36 0.9 0.28 +0.38 0.9 0.28 +0.4 0.9 0.28 +0.42 0.9 0.28 +0.44 0.9 0.28 +0.46 0.9 0.28 +0.48 0.9 0.28 +0.5 0.9 0.28 +0.52 0.9 0.28 +0.54 0.9 0.28 +0.56 0.9 0.28 +0.58 0.9 0.28 +0.6 0.9 0.28 +0.62 0.9 0.28 +0.64 0.9 0.28 +0.66 0.9 0.28 +0.68 0.9 0.28 +0.7 0.9 0.28 +0.36 0.92 0.28 +0.38 0.92 0.28 +0.4 0.92 0.28 +0.42 0.92 0.28 +0.44 0.92 0.28 +0.46 0.92 0.28 +0.48 0.92 0.28 +0.5 0.92 0.28 +0.52 0.92 0.28 +0.54 0.92 0.28 +0.56 0.92 0.28 +0.58 0.92 0.28 +0.6 0.92 0.28 +0.62 0.92 0.28 +0.64 0.92 0.28 +0.42 0.94 0.28 +0.44 0.94 0.28 +0.46 0.94 0.28 +0.48 0.94 0.28 +0.5 0.94 0.28 +0.52 0.94 0.28 +0.54 0.94 0.28 +0.56 0.94 0.28 +0.58 0.94 0.28 +0.38 0.06 0.3 +0.4 0.06 0.3 +0.42 0.06 0.3 +0.44 0.06 0.3 +0.46 0.06 0.3 +0.48 0.06 0.3 +0.5 0.06 0.3 +0.52 0.06 0.3 +0.54 0.06 0.3 +0.56 0.06 0.3 +0.58 0.06 0.3 +0.6 0.06 0.3 +0.62 0.06 0.3 +0.32 0.08 0.3 +0.34 0.08 0.3 +0.36 0.08 0.3 +0.38 0.08 0.3 +0.4 0.08 0.3 +0.42 0.08 0.3 +0.44 0.08 0.3 +0.46 0.08 0.3 +0.48 0.08 0.3 +0.5 0.08 0.3 +0.52 0.08 0.3 +0.54 0.08 0.3 +0.56 0.08 0.3 +0.58 0.08 0.3 +0.6 0.08 0.3 +0.62 0.08 0.3 +0.64 0.08 0.3 +0.66 0.08 0.3 +0.68 0.08 0.3 +0.28 0.1 0.3 +0.3 0.1 0.3 +0.32 0.1 0.3 +0.34 0.1 0.3 +0.36 0.1 0.3 +0.38 0.1 0.3 +0.4 0.1 0.3 +0.42 0.1 0.3 +0.44 0.1 0.3 +0.56 0.1 0.3 +0.58 0.1 0.3 +0.6 0.1 0.3 +0.62 0.1 0.3 +0.64 0.1 0.3 +0.66 0.1 0.3 +0.68 0.1 0.3 +0.7 0.1 0.3 +0.72 0.1 0.3 +0.26 0.12 0.3 +0.28 0.12 0.3 +0.3 0.12 0.3 +0.32 0.12 0.3 +0.34 0.12 0.3 +0.36 0.12 0.3 +0.64 0.12 0.3 +0.66 0.12 0.3 +0.68 0.12 0.3 +0.7 0.12 0.3 +0.72 0.12 0.3 +0.74 0.12 0.3 +0.22 0.14 0.3 +0.24 0.14 0.3 +0.26 0.14 0.3 +0.28 0.14 0.3 +0.3 0.14 0.3 +0.7 0.14 0.3 +0.72 0.14 0.3 +0.74 0.14 0.3 +0.76 0.14 0.3 +0.78 0.14 0.3 +0.2 0.16 0.3 +0.22 0.16 0.3 +0.24 0.16 0.3 +0.26 0.16 0.3 +0.28 0.16 0.3 +0.72 0.16 0.3 +0.74 0.16 0.3 +0.76 0.16 0.3 +0.78 0.16 0.3 +0.8 0.16 0.3 +0.18 0.18 0.3 +0.2 0.18 0.3 +0.22 0.18 0.3 +0.24 0.18 0.3 +0.76 0.18 0.3 +0.78 0.18 0.3 +0.8 0.18 0.3 +0.82 0.18 0.3 +0.16 0.2 0.3 +0.18 0.2 0.3 +0.2 0.2 0.3 +0.22 0.2 0.3 +0.78 0.2 0.3 +0.8 0.2 0.3 +0.82 0.2 0.3 +0.84 0.2 0.3 +0.14 0.22 0.3 +0.16 0.22 0.3 +0.18 0.22 0.3 +0.2 0.22 0.3 +0.8 0.22 0.3 +0.82 0.22 0.3 +0.84 0.22 0.3 +0.86 0.22 0.3 +0.14 0.24 0.3 +0.16 0.24 0.3 +0.18 0.24 0.3 +0.82 0.24 0.3 +0.84 0.24 0.3 +0.86 0.24 0.3 +0.12 0.26 0.3 +0.14 0.26 0.3 +0.16 0.26 0.3 +0.84 0.26 0.3 +0.86 0.26 0.3 +0.88 0.26 0.3 +0.1 0.28 0.3 +0.12 0.28 0.3 +0.14 0.28 0.3 +0.16 0.28 0.3 +0.84 0.28 0.3 +0.86 0.28 0.3 +0.88 0.28 0.3 +0.9 0.28 0.3 +0.1 0.3 0.3 +0.12 0.3 0.3 +0.14 0.3 0.3 +0.86 0.3 0.3 +0.88 0.3 0.3 +0.9 0.3 0.3 +0.08 0.32 0.3 +0.1 0.32 0.3 +0.12 0.32 0.3 +0.88 0.32 0.3 +0.9 0.32 0.3 +0.92 0.32 0.3 +0.08 0.34 0.3 +0.1 0.34 0.3 +0.12 0.34 0.3 +0.88 0.34 0.3 +0.9 0.34 0.3 +0.92 0.34 0.3 +0.08 0.36 0.3 +0.1 0.36 0.3 +0.12 0.36 0.3 +0.88 0.36 0.3 +0.9 0.36 0.3 +0.92 0.36 0.3 +0.06 0.38 0.3 +0.08 0.38 0.3 +0.1 0.38 0.3 +0.9 0.38 0.3 +0.92 0.38 0.3 +0.94 0.38 0.3 +0.06 0.4 0.3 +0.08 0.4 0.3 +0.1 0.4 0.3 +0.9 0.4 0.3 +0.92 0.4 0.3 +0.94 0.4 0.3 +0.06 0.42 0.3 +0.08 0.42 0.3 +0.1 0.42 0.3 +0.9 0.42 0.3 +0.92 0.42 0.3 +0.94 0.42 0.3 +0.06 0.44 0.3 +0.08 0.44 0.3 +0.1 0.44 0.3 +0.9 0.44 0.3 +0.92 0.44 0.3 +0.94 0.44 0.3 +0.06 0.46 0.3 +0.08 0.46 0.3 +0.92 0.46 0.3 +0.94 0.46 0.3 +0.06 0.48 0.3 +0.08 0.48 0.3 +0.92 0.48 0.3 +0.94 0.48 0.3 +0.06 0.5 0.3 +0.08 0.5 0.3 +0.92 0.5 0.3 +0.94 0.5 0.3 +0.06 0.52 0.3 +0.08 0.52 0.3 +0.92 0.52 0.3 +0.94 0.52 0.3 +0.06 0.54 0.3 +0.08 0.54 0.3 +0.92 0.54 0.3 +0.94 0.54 0.3 +0.06 0.56 0.3 +0.08 0.56 0.3 +0.1 0.56 0.3 +0.9 0.56 0.3 +0.92 0.56 0.3 +0.94 0.56 0.3 +0.06 0.58 0.3 +0.08 0.58 0.3 +0.1 0.58 0.3 +0.9 0.58 0.3 +0.92 0.58 0.3 +0.94 0.58 0.3 +0.06 0.6 0.3 +0.08 0.6 0.3 +0.1 0.6 0.3 +0.9 0.6 0.3 +0.92 0.6 0.3 +0.94 0.6 0.3 +0.06 0.62 0.3 +0.08 0.62 0.3 +0.1 0.62 0.3 +0.9 0.62 0.3 +0.92 0.62 0.3 +0.94 0.62 0.3 +0.08 0.64 0.3 +0.1 0.64 0.3 +0.12 0.64 0.3 +0.88 0.64 0.3 +0.9 0.64 0.3 +0.92 0.64 0.3 +0.08 0.66 0.3 +0.1 0.66 0.3 +0.12 0.66 0.3 +0.88 0.66 0.3 +0.9 0.66 0.3 +0.92 0.66 0.3 +0.08 0.68 0.3 +0.1 0.68 0.3 +0.12 0.68 0.3 +0.88 0.68 0.3 +0.9 0.68 0.3 +0.92 0.68 0.3 +0.1 0.7 0.3 +0.12 0.7 0.3 +0.14 0.7 0.3 +0.86 0.7 0.3 +0.88 0.7 0.3 +0.9 0.7 0.3 +0.1 0.72 0.3 +0.12 0.72 0.3 +0.14 0.72 0.3 +0.16 0.72 0.3 +0.84 0.72 0.3 +0.86 0.72 0.3 +0.88 0.72 0.3 +0.9 0.72 0.3 +0.12 0.74 0.3 +0.14 0.74 0.3 +0.16 0.74 0.3 +0.84 0.74 0.3 +0.86 0.74 0.3 +0.88 0.74 0.3 +0.14 0.76 0.3 +0.16 0.76 0.3 +0.18 0.76 0.3 +0.82 0.76 0.3 +0.84 0.76 0.3 +0.86 0.76 0.3 +0.14 0.78 0.3 +0.16 0.78 0.3 +0.18 0.78 0.3 +0.2 0.78 0.3 +0.8 0.78 0.3 +0.82 0.78 0.3 +0.84 0.78 0.3 +0.86 0.78 0.3 +0.16 0.8 0.3 +0.18 0.8 0.3 +0.2 0.8 0.3 +0.22 0.8 0.3 +0.78 0.8 0.3 +0.8 0.8 0.3 +0.82 0.8 0.3 +0.84 0.8 0.3 +0.18 0.82 0.3 +0.2 0.82 0.3 +0.22 0.82 0.3 +0.24 0.82 0.3 +0.76 0.82 0.3 +0.78 0.82 0.3 +0.8 0.82 0.3 +0.82 0.82 0.3 +0.2 0.84 0.3 +0.22 0.84 0.3 +0.24 0.84 0.3 +0.26 0.84 0.3 +0.28 0.84 0.3 +0.72 0.84 0.3 +0.74 0.84 0.3 +0.76 0.84 0.3 +0.78 0.84 0.3 +0.8 0.84 0.3 +0.22 0.86 0.3 +0.24 0.86 0.3 +0.26 0.86 0.3 +0.28 0.86 0.3 +0.3 0.86 0.3 +0.7 0.86 0.3 +0.72 0.86 0.3 +0.74 0.86 0.3 +0.76 0.86 0.3 +0.78 0.86 0.3 +0.26 0.88 0.3 +0.28 0.88 0.3 +0.3 0.88 0.3 +0.32 0.88 0.3 +0.34 0.88 0.3 +0.36 0.88 0.3 +0.64 0.88 0.3 +0.66 0.88 0.3 +0.68 0.88 0.3 +0.7 0.88 0.3 +0.72 0.88 0.3 +0.74 0.88 0.3 +0.28 0.9 0.3 +0.3 0.9 0.3 +0.32 0.9 0.3 +0.34 0.9 0.3 +0.36 0.9 0.3 +0.38 0.9 0.3 +0.4 0.9 0.3 +0.42 0.9 0.3 +0.44 0.9 0.3 +0.56 0.9 0.3 +0.58 0.9 0.3 +0.6 0.9 0.3 +0.62 0.9 0.3 +0.64 0.9 0.3 +0.66 0.9 0.3 +0.68 0.9 0.3 +0.7 0.9 0.3 +0.72 0.9 0.3 +0.32 0.92 0.3 +0.34 0.92 0.3 +0.36 0.92 0.3 +0.38 0.92 0.3 +0.4 0.92 0.3 +0.42 0.92 0.3 +0.44 0.92 0.3 +0.46 0.92 0.3 +0.48 0.92 0.3 +0.5 0.92 0.3 +0.52 0.92 0.3 +0.54 0.92 0.3 +0.56 0.92 0.3 +0.58 0.92 0.3 +0.6 0.92 0.3 +0.62 0.92 0.3 +0.64 0.92 0.3 +0.66 0.92 0.3 +0.68 0.92 0.3 +0.38 0.94 0.3 +0.4 0.94 0.3 +0.42 0.94 0.3 +0.44 0.94 0.3 +0.46 0.94 0.3 +0.48 0.94 0.3 +0.5 0.94 0.3 +0.52 0.94 0.3 +0.54 0.94 0.3 +0.56 0.94 0.3 +0.58 0.94 0.3 +0.6 0.94 0.3 +0.62 0.94 0.3 +0.44 0.04 0.32 +0.46 0.04 0.32 +0.48 0.04 0.32 +0.5 0.04 0.32 +0.52 0.04 0.32 +0.54 0.04 0.32 +0.56 0.04 0.32 +0.36 0.06 0.32 +0.38 0.06 0.32 +0.4 0.06 0.32 +0.42 0.06 0.32 +0.44 0.06 0.32 +0.46 0.06 0.32 +0.48 0.06 0.32 +0.5 0.06 0.32 +0.52 0.06 0.32 +0.54 0.06 0.32 +0.56 0.06 0.32 +0.58 0.06 0.32 +0.6 0.06 0.32 +0.62 0.06 0.32 +0.64 0.06 0.32 +0.3 0.08 0.32 +0.32 0.08 0.32 +0.34 0.08 0.32 +0.36 0.08 0.32 +0.38 0.08 0.32 +0.4 0.08 0.32 +0.42 0.08 0.32 +0.44 0.08 0.32 +0.46 0.08 0.32 +0.48 0.08 0.32 +0.5 0.08 0.32 +0.52 0.08 0.32 +0.54 0.08 0.32 +0.56 0.08 0.32 +0.58 0.08 0.32 +0.6 0.08 0.32 +0.62 0.08 0.32 +0.64 0.08 0.32 +0.66 0.08 0.32 +0.68 0.08 0.32 +0.7 0.08 0.32 +0.28 0.1 0.32 +0.3 0.1 0.32 +0.32 0.1 0.32 +0.34 0.1 0.32 +0.36 0.1 0.32 +0.38 0.1 0.32 +0.62 0.1 0.32 +0.64 0.1 0.32 +0.66 0.1 0.32 +0.68 0.1 0.32 +0.7 0.1 0.32 +0.72 0.1 0.32 +0.24 0.12 0.32 +0.26 0.12 0.32 +0.28 0.12 0.32 +0.3 0.12 0.32 +0.32 0.12 0.32 +0.68 0.12 0.32 +0.7 0.12 0.32 +0.72 0.12 0.32 +0.74 0.12 0.32 +0.76 0.12 0.32 +0.22 0.14 0.32 +0.24 0.14 0.32 +0.26 0.14 0.32 +0.28 0.14 0.32 +0.72 0.14 0.32 +0.74 0.14 0.32 +0.76 0.14 0.32 +0.78 0.14 0.32 +0.2 0.16 0.32 +0.22 0.16 0.32 +0.24 0.16 0.32 +0.26 0.16 0.32 +0.74 0.16 0.32 +0.76 0.16 0.32 +0.78 0.16 0.32 +0.8 0.16 0.32 +0.18 0.18 0.32 +0.2 0.18 0.32 +0.22 0.18 0.32 +0.78 0.18 0.32 +0.8 0.18 0.32 +0.82 0.18 0.32 +0.16 0.2 0.32 +0.18 0.2 0.32 +0.2 0.2 0.32 +0.8 0.2 0.32 +0.82 0.2 0.32 +0.84 0.2 0.32 +0.14 0.22 0.32 +0.16 0.22 0.32 +0.18 0.22 0.32 +0.82 0.22 0.32 +0.84 0.22 0.32 +0.86 0.22 0.32 +0.12 0.24 0.32 +0.14 0.24 0.32 +0.16 0.24 0.32 +0.84 0.24 0.32 +0.86 0.24 0.32 +0.88 0.24 0.32 +0.12 0.26 0.32 +0.14 0.26 0.32 +0.16 0.26 0.32 +0.84 0.26 0.32 +0.86 0.26 0.32 +0.88 0.26 0.32 +0.1 0.28 0.32 +0.12 0.28 0.32 +0.14 0.28 0.32 +0.86 0.28 0.32 +0.88 0.28 0.32 +0.9 0.28 0.32 +0.08 0.3 0.32 +0.1 0.3 0.32 +0.12 0.3 0.32 +0.88 0.3 0.32 +0.9 0.3 0.32 +0.92 0.3 0.32 +0.08 0.32 0.32 +0.1 0.32 0.32 +0.12 0.32 0.32 +0.88 0.32 0.32 +0.9 0.32 0.32 +0.92 0.32 0.32 +0.08 0.34 0.32 +0.1 0.34 0.32 +0.9 0.34 0.32 +0.92 0.34 0.32 +0.06 0.36 0.32 +0.08 0.36 0.32 +0.1 0.36 0.32 +0.9 0.36 0.32 +0.92 0.36 0.32 +0.94 0.36 0.32 +0.06 0.38 0.32 +0.08 0.38 0.32 +0.1 0.38 0.32 +0.9 0.38 0.32 +0.92 0.38 0.32 +0.94 0.38 0.32 +0.06 0.4 0.32 +0.08 0.4 0.32 +0.92 0.4 0.32 +0.94 0.4 0.32 +0.06 0.42 0.32 +0.08 0.42 0.32 +0.92 0.42 0.32 +0.94 0.42 0.32 +0.04 0.44 0.32 +0.06 0.44 0.32 +0.08 0.44 0.32 +0.92 0.44 0.32 +0.94 0.44 0.32 +0.96 0.44 0.32 +0.04 0.46 0.32 +0.06 0.46 0.32 +0.08 0.46 0.32 +0.92 0.46 0.32 +0.94 0.46 0.32 +0.96 0.46 0.32 +0.04 0.48 0.32 +0.06 0.48 0.32 +0.08 0.48 0.32 +0.92 0.48 0.32 +0.94 0.48 0.32 +0.96 0.48 0.32 +0.04 0.5 0.32 +0.06 0.5 0.32 +0.08 0.5 0.32 +0.92 0.5 0.32 +0.94 0.5 0.32 +0.96 0.5 0.32 +0.04 0.52 0.32 +0.06 0.52 0.32 +0.08 0.52 0.32 +0.92 0.52 0.32 +0.94 0.52 0.32 +0.96 0.52 0.32 +0.04 0.54 0.32 +0.06 0.54 0.32 +0.08 0.54 0.32 +0.92 0.54 0.32 +0.94 0.54 0.32 +0.96 0.54 0.32 +0.04 0.56 0.32 +0.06 0.56 0.32 +0.08 0.56 0.32 +0.92 0.56 0.32 +0.94 0.56 0.32 +0.96 0.56 0.32 +0.06 0.58 0.32 +0.08 0.58 0.32 +0.92 0.58 0.32 +0.94 0.58 0.32 +0.06 0.6 0.32 +0.08 0.6 0.32 +0.92 0.6 0.32 +0.94 0.6 0.32 +0.06 0.62 0.32 +0.08 0.62 0.32 +0.1 0.62 0.32 +0.9 0.62 0.32 +0.92 0.62 0.32 +0.94 0.62 0.32 +0.06 0.64 0.32 +0.08 0.64 0.32 +0.1 0.64 0.32 +0.9 0.64 0.32 +0.92 0.64 0.32 +0.94 0.64 0.32 +0.08 0.66 0.32 +0.1 0.66 0.32 +0.9 0.66 0.32 +0.92 0.66 0.32 +0.08 0.68 0.32 +0.1 0.68 0.32 +0.12 0.68 0.32 +0.88 0.68 0.32 +0.9 0.68 0.32 +0.92 0.68 0.32 +0.08 0.7 0.32 +0.1 0.7 0.32 +0.12 0.7 0.32 +0.88 0.7 0.32 +0.9 0.7 0.32 +0.92 0.7 0.32 +0.1 0.72 0.32 +0.12 0.72 0.32 +0.14 0.72 0.32 +0.86 0.72 0.32 +0.88 0.72 0.32 +0.9 0.72 0.32 +0.12 0.74 0.32 +0.14 0.74 0.32 +0.16 0.74 0.32 +0.84 0.74 0.32 +0.86 0.74 0.32 +0.88 0.74 0.32 +0.12 0.76 0.32 +0.14 0.76 0.32 +0.16 0.76 0.32 +0.84 0.76 0.32 +0.86 0.76 0.32 +0.88 0.76 0.32 +0.14 0.78 0.32 +0.16 0.78 0.32 +0.18 0.78 0.32 +0.82 0.78 0.32 +0.84 0.78 0.32 +0.86 0.78 0.32 +0.16 0.8 0.32 +0.18 0.8 0.32 +0.2 0.8 0.32 +0.8 0.8 0.32 +0.82 0.8 0.32 +0.84 0.8 0.32 +0.18 0.82 0.32 +0.2 0.82 0.32 +0.22 0.82 0.32 +0.78 0.82 0.32 +0.8 0.82 0.32 +0.82 0.82 0.32 +0.2 0.84 0.32 +0.22 0.84 0.32 +0.24 0.84 0.32 +0.26 0.84 0.32 +0.74 0.84 0.32 +0.76 0.84 0.32 +0.78 0.84 0.32 +0.8 0.84 0.32 +0.22 0.86 0.32 +0.24 0.86 0.32 +0.26 0.86 0.32 +0.28 0.86 0.32 +0.72 0.86 0.32 +0.74 0.86 0.32 +0.76 0.86 0.32 +0.78 0.86 0.32 +0.24 0.88 0.32 +0.26 0.88 0.32 +0.28 0.88 0.32 +0.3 0.88 0.32 +0.32 0.88 0.32 +0.68 0.88 0.32 +0.7 0.88 0.32 +0.72 0.88 0.32 +0.74 0.88 0.32 +0.76 0.88 0.32 +0.28 0.9 0.32 +0.3 0.9 0.32 +0.32 0.9 0.32 +0.34 0.9 0.32 +0.36 0.9 0.32 +0.38 0.9 0.32 +0.62 0.9 0.32 +0.64 0.9 0.32 +0.66 0.9 0.32 +0.68 0.9 0.32 +0.7 0.9 0.32 +0.72 0.9 0.32 +0.3 0.92 0.32 +0.32 0.92 0.32 +0.34 0.92 0.32 +0.36 0.92 0.32 +0.38 0.92 0.32 +0.4 0.92 0.32 +0.42 0.92 0.32 +0.44 0.92 0.32 +0.46 0.92 0.32 +0.48 0.92 0.32 +0.5 0.92 0.32 +0.52 0.92 0.32 +0.54 0.92 0.32 +0.56 0.92 0.32 +0.58 0.92 0.32 +0.6 0.92 0.32 +0.62 0.92 0.32 +0.64 0.92 0.32 +0.66 0.92 0.32 +0.68 0.92 0.32 +0.7 0.92 0.32 +0.36 0.94 0.32 +0.38 0.94 0.32 +0.4 0.94 0.32 +0.42 0.94 0.32 +0.44 0.94 0.32 +0.46 0.94 0.32 +0.48 0.94 0.32 +0.5 0.94 0.32 +0.52 0.94 0.32 +0.54 0.94 0.32 +0.56 0.94 0.32 +0.58 0.94 0.32 +0.6 0.94 0.32 +0.62 0.94 0.32 +0.64 0.94 0.32 +0.44 0.96 0.32 +0.46 0.96 0.32 +0.48 0.96 0.32 +0.5 0.96 0.32 +0.52 0.96 0.32 +0.54 0.96 0.32 +0.56 0.96 0.32 +0.4 0.04 0.34 +0.42 0.04 0.34 +0.44 0.04 0.34 +0.46 0.04 0.34 +0.48 0.04 0.34 +0.5 0.04 0.34 +0.52 0.04 0.34 +0.54 0.04 0.34 +0.56 0.04 0.34 +0.58 0.04 0.34 +0.6 0.04 0.34 +0.34 0.06 0.34 +0.36 0.06 0.34 +0.38 0.06 0.34 +0.4 0.06 0.34 +0.42 0.06 0.34 +0.44 0.06 0.34 +0.46 0.06 0.34 +0.48 0.06 0.34 +0.5 0.06 0.34 +0.52 0.06 0.34 +0.54 0.06 0.34 +0.56 0.06 0.34 +0.58 0.06 0.34 +0.6 0.06 0.34 +0.62 0.06 0.34 +0.64 0.06 0.34 +0.66 0.06 0.34 +0.3 0.08 0.34 +0.32 0.08 0.34 +0.34 0.08 0.34 +0.36 0.08 0.34 +0.38 0.08 0.34 +0.4 0.08 0.34 +0.42 0.08 0.34 +0.44 0.08 0.34 +0.46 0.08 0.34 +0.54 0.08 0.34 +0.56 0.08 0.34 +0.58 0.08 0.34 +0.6 0.08 0.34 +0.62 0.08 0.34 +0.64 0.08 0.34 +0.66 0.08 0.34 +0.68 0.08 0.34 +0.7 0.08 0.34 +0.26 0.1 0.34 +0.28 0.1 0.34 +0.3 0.1 0.34 +0.32 0.1 0.34 +0.34 0.1 0.34 +0.36 0.1 0.34 +0.64 0.1 0.34 +0.66 0.1 0.34 +0.68 0.1 0.34 +0.7 0.1 0.34 +0.72 0.1 0.34 +0.74 0.1 0.34 +0.22 0.12 0.34 +0.24 0.12 0.34 +0.26 0.12 0.34 +0.28 0.12 0.34 +0.3 0.12 0.34 +0.7 0.12 0.34 +0.72 0.12 0.34 +0.74 0.12 0.34 +0.76 0.12 0.34 +0.78 0.12 0.34 +0.2 0.14 0.34 +0.22 0.14 0.34 +0.24 0.14 0.34 +0.26 0.14 0.34 +0.28 0.14 0.34 +0.72 0.14 0.34 +0.74 0.14 0.34 +0.76 0.14 0.34 +0.78 0.14 0.34 +0.8 0.14 0.34 +0.18 0.16 0.34 +0.2 0.16 0.34 +0.22 0.16 0.34 +0.24 0.16 0.34 +0.76 0.16 0.34 +0.78 0.16 0.34 +0.8 0.16 0.34 +0.82 0.16 0.34 +0.16 0.18 0.34 +0.18 0.18 0.34 +0.2 0.18 0.34 +0.22 0.18 0.34 +0.78 0.18 0.34 +0.8 0.18 0.34 +0.82 0.18 0.34 +0.84 0.18 0.34 +0.14 0.2 0.34 +0.16 0.2 0.34 +0.18 0.2 0.34 +0.2 0.2 0.34 +0.8 0.2 0.34 +0.82 0.2 0.34 +0.84 0.2 0.34 +0.86 0.2 0.34 +0.12 0.22 0.34 +0.14 0.22 0.34 +0.16 0.22 0.34 +0.18 0.22 0.34 +0.82 0.22 0.34 +0.84 0.22 0.34 +0.86 0.22 0.34 +0.88 0.22 0.34 +0.12 0.24 0.34 +0.14 0.24 0.34 +0.16 0.24 0.34 +0.84 0.24 0.34 +0.86 0.24 0.34 +0.88 0.24 0.34 +0.1 0.26 0.34 +0.12 0.26 0.34 +0.14 0.26 0.34 +0.86 0.26 0.34 +0.88 0.26 0.34 +0.9 0.26 0.34 +0.1 0.28 0.34 +0.12 0.28 0.34 +0.14 0.28 0.34 +0.86 0.28 0.34 +0.88 0.28 0.34 +0.9 0.28 0.34 +0.08 0.3 0.34 +0.1 0.3 0.34 +0.12 0.3 0.34 +0.88 0.3 0.34 +0.9 0.3 0.34 +0.92 0.3 0.34 +0.08 0.32 0.34 +0.1 0.32 0.34 +0.9 0.32 0.34 +0.92 0.32 0.34 +0.06 0.34 0.34 +0.08 0.34 0.34 +0.1 0.34 0.34 +0.9 0.34 0.34 +0.92 0.34 0.34 +0.94 0.34 0.34 +0.06 0.36 0.34 +0.08 0.36 0.34 +0.1 0.36 0.34 +0.9 0.36 0.34 +0.92 0.36 0.34 +0.94 0.36 0.34 +0.06 0.38 0.34 +0.08 0.38 0.34 +0.92 0.38 0.34 +0.94 0.38 0.34 +0.04 0.4 0.34 +0.06 0.4 0.34 +0.08 0.4 0.34 +0.92 0.4 0.34 +0.94 0.4 0.34 +0.96 0.4 0.34 +0.04 0.42 0.34 +0.06 0.42 0.34 +0.08 0.42 0.34 +0.92 0.42 0.34 +0.94 0.42 0.34 +0.96 0.42 0.34 +0.04 0.44 0.34 +0.06 0.44 0.34 +0.08 0.44 0.34 +0.92 0.44 0.34 +0.94 0.44 0.34 +0.96 0.44 0.34 +0.04 0.46 0.34 +0.06 0.46 0.34 +0.08 0.46 0.34 +0.92 0.46 0.34 +0.94 0.46 0.34 +0.96 0.46 0.34 +0.04 0.48 0.34 +0.06 0.48 0.34 +0.94 0.48 0.34 +0.96 0.48 0.34 +0.04 0.5 0.34 +0.06 0.5 0.34 +0.94 0.5 0.34 +0.96 0.5 0.34 +0.04 0.52 0.34 +0.06 0.52 0.34 +0.94 0.52 0.34 +0.96 0.52 0.34 +0.04 0.54 0.34 +0.06 0.54 0.34 +0.08 0.54 0.34 +0.92 0.54 0.34 +0.94 0.54 0.34 +0.96 0.54 0.34 +0.04 0.56 0.34 +0.06 0.56 0.34 +0.08 0.56 0.34 +0.92 0.56 0.34 +0.94 0.56 0.34 +0.96 0.56 0.34 +0.04 0.58 0.34 +0.06 0.58 0.34 +0.08 0.58 0.34 +0.92 0.58 0.34 +0.94 0.58 0.34 +0.96 0.58 0.34 +0.04 0.6 0.34 +0.06 0.6 0.34 +0.08 0.6 0.34 +0.92 0.6 0.34 +0.94 0.6 0.34 +0.96 0.6 0.34 +0.06 0.62 0.34 +0.08 0.62 0.34 +0.92 0.62 0.34 +0.94 0.62 0.34 +0.06 0.64 0.34 +0.08 0.64 0.34 +0.1 0.64 0.34 +0.9 0.64 0.34 +0.92 0.64 0.34 +0.94 0.64 0.34 +0.06 0.66 0.34 +0.08 0.66 0.34 +0.1 0.66 0.34 +0.9 0.66 0.34 +0.92 0.66 0.34 +0.94 0.66 0.34 +0.08 0.68 0.34 +0.1 0.68 0.34 +0.9 0.68 0.34 +0.92 0.68 0.34 +0.08 0.7 0.34 +0.1 0.7 0.34 +0.12 0.7 0.34 +0.88 0.7 0.34 +0.9 0.7 0.34 +0.92 0.7 0.34 +0.1 0.72 0.34 +0.12 0.72 0.34 +0.14 0.72 0.34 +0.86 0.72 0.34 +0.88 0.72 0.34 +0.9 0.72 0.34 +0.1 0.74 0.34 +0.12 0.74 0.34 +0.14 0.74 0.34 +0.86 0.74 0.34 +0.88 0.74 0.34 +0.9 0.74 0.34 +0.12 0.76 0.34 +0.14 0.76 0.34 +0.16 0.76 0.34 +0.84 0.76 0.34 +0.86 0.76 0.34 +0.88 0.76 0.34 +0.12 0.78 0.34 +0.14 0.78 0.34 +0.16 0.78 0.34 +0.18 0.78 0.34 +0.82 0.78 0.34 +0.84 0.78 0.34 +0.86 0.78 0.34 +0.88 0.78 0.34 +0.14 0.8 0.34 +0.16 0.8 0.34 +0.18 0.8 0.34 +0.2 0.8 0.34 +0.8 0.8 0.34 +0.82 0.8 0.34 +0.84 0.8 0.34 +0.86 0.8 0.34 +0.16 0.82 0.34 +0.18 0.82 0.34 +0.2 0.82 0.34 +0.22 0.82 0.34 +0.78 0.82 0.34 +0.8 0.82 0.34 +0.82 0.82 0.34 +0.84 0.82 0.34 +0.18 0.84 0.34 +0.2 0.84 0.34 +0.22 0.84 0.34 +0.24 0.84 0.34 +0.76 0.84 0.34 +0.78 0.84 0.34 +0.8 0.84 0.34 +0.82 0.84 0.34 +0.2 0.86 0.34 +0.22 0.86 0.34 +0.24 0.86 0.34 +0.26 0.86 0.34 +0.28 0.86 0.34 +0.72 0.86 0.34 +0.74 0.86 0.34 +0.76 0.86 0.34 +0.78 0.86 0.34 +0.8 0.86 0.34 +0.22 0.88 0.34 +0.24 0.88 0.34 +0.26 0.88 0.34 +0.28 0.88 0.34 +0.3 0.88 0.34 +0.7 0.88 0.34 +0.72 0.88 0.34 +0.74 0.88 0.34 +0.76 0.88 0.34 +0.78 0.88 0.34 +0.26 0.9 0.34 +0.28 0.9 0.34 +0.3 0.9 0.34 +0.32 0.9 0.34 +0.34 0.9 0.34 +0.36 0.9 0.34 +0.64 0.9 0.34 +0.66 0.9 0.34 +0.68 0.9 0.34 +0.7 0.9 0.34 +0.72 0.9 0.34 +0.74 0.9 0.34 +0.3 0.92 0.34 +0.32 0.92 0.34 +0.34 0.92 0.34 +0.36 0.92 0.34 +0.38 0.92 0.34 +0.4 0.92 0.34 +0.42 0.92 0.34 +0.44 0.92 0.34 +0.46 0.92 0.34 +0.54 0.92 0.34 +0.56 0.92 0.34 +0.58 0.92 0.34 +0.6 0.92 0.34 +0.62 0.92 0.34 +0.64 0.92 0.34 +0.66 0.92 0.34 +0.68 0.92 0.34 +0.7 0.92 0.34 +0.34 0.94 0.34 +0.36 0.94 0.34 +0.38 0.94 0.34 +0.4 0.94 0.34 +0.42 0.94 0.34 +0.44 0.94 0.34 +0.46 0.94 0.34 +0.48 0.94 0.34 +0.5 0.94 0.34 +0.52 0.94 0.34 +0.54 0.94 0.34 +0.56 0.94 0.34 +0.58 0.94 0.34 +0.6 0.94 0.34 +0.62 0.94 0.34 +0.64 0.94 0.34 +0.66 0.94 0.34 +0.4 0.96 0.34 +0.42 0.96 0.34 +0.44 0.96 0.34 +0.46 0.96 0.34 +0.48 0.96 0.34 +0.5 0.96 0.34 +0.52 0.96 0.34 +0.54 0.96 0.34 +0.56 0.96 0.34 +0.58 0.96 0.34 +0.6 0.96 0.34 +0.38 0.04 0.36 +0.4 0.04 0.36 +0.42 0.04 0.36 +0.44 0.04 0.36 +0.46 0.04 0.36 +0.48 0.04 0.36 +0.5 0.04 0.36 +0.52 0.04 0.36 +0.54 0.04 0.36 +0.56 0.04 0.36 +0.58 0.04 0.36 +0.6 0.04 0.36 +0.62 0.04 0.36 +0.32 0.06 0.36 +0.34 0.06 0.36 +0.36 0.06 0.36 +0.38 0.06 0.36 +0.4 0.06 0.36 +0.42 0.06 0.36 +0.44 0.06 0.36 +0.46 0.06 0.36 +0.48 0.06 0.36 +0.5 0.06 0.36 +0.52 0.06 0.36 +0.54 0.06 0.36 +0.56 0.06 0.36 +0.58 0.06 0.36 +0.6 0.06 0.36 +0.62 0.06 0.36 +0.64 0.06 0.36 +0.66 0.06 0.36 +0.68 0.06 0.36 +0.28 0.08 0.36 +0.3 0.08 0.36 +0.32 0.08 0.36 +0.34 0.08 0.36 +0.36 0.08 0.36 +0.38 0.08 0.36 +0.4 0.08 0.36 +0.6 0.08 0.36 +0.62 0.08 0.36 +0.64 0.08 0.36 +0.66 0.08 0.36 +0.68 0.08 0.36 +0.7 0.08 0.36 +0.72 0.08 0.36 +0.24 0.1 0.36 +0.26 0.1 0.36 +0.28 0.1 0.36 +0.3 0.1 0.36 +0.32 0.1 0.36 +0.34 0.1 0.36 +0.66 0.1 0.36 +0.68 0.1 0.36 +0.7 0.1 0.36 +0.72 0.1 0.36 +0.74 0.1 0.36 +0.76 0.1 0.36 +0.22 0.12 0.36 +0.24 0.12 0.36 +0.26 0.12 0.36 +0.28 0.12 0.36 +0.3 0.12 0.36 +0.7 0.12 0.36 +0.72 0.12 0.36 +0.74 0.12 0.36 +0.76 0.12 0.36 +0.78 0.12 0.36 +0.2 0.14 0.36 +0.22 0.14 0.36 +0.24 0.14 0.36 +0.26 0.14 0.36 +0.74 0.14 0.36 +0.76 0.14 0.36 +0.78 0.14 0.36 +0.8 0.14 0.36 +0.18 0.16 0.36 +0.2 0.16 0.36 +0.22 0.16 0.36 +0.24 0.16 0.36 +0.76 0.16 0.36 +0.78 0.16 0.36 +0.8 0.16 0.36 +0.82 0.16 0.36 +0.16 0.18 0.36 +0.18 0.18 0.36 +0.2 0.18 0.36 +0.8 0.18 0.36 +0.82 0.18 0.36 +0.84 0.18 0.36 +0.14 0.2 0.36 +0.16 0.2 0.36 +0.18 0.2 0.36 +0.82 0.2 0.36 +0.84 0.2 0.36 +0.86 0.2 0.36 +0.12 0.22 0.36 +0.14 0.22 0.36 +0.16 0.22 0.36 +0.84 0.22 0.36 +0.86 0.22 0.36 +0.88 0.22 0.36 +0.1 0.24 0.36 +0.12 0.24 0.36 +0.14 0.24 0.36 +0.16 0.24 0.36 +0.84 0.24 0.36 +0.86 0.24 0.36 +0.88 0.24 0.36 +0.9 0.24 0.36 +0.1 0.26 0.36 +0.12 0.26 0.36 +0.14 0.26 0.36 +0.86 0.26 0.36 +0.88 0.26 0.36 +0.9 0.26 0.36 +0.08 0.28 0.36 +0.1 0.28 0.36 +0.12 0.28 0.36 +0.88 0.28 0.36 +0.9 0.28 0.36 +0.92 0.28 0.36 +0.08 0.3 0.36 +0.1 0.3 0.36 +0.12 0.3 0.36 +0.88 0.3 0.36 +0.9 0.3 0.36 +0.92 0.3 0.36 +0.06 0.32 0.36 +0.08 0.32 0.36 +0.1 0.32 0.36 +0.9 0.32 0.36 +0.92 0.32 0.36 +0.94 0.32 0.36 +0.06 0.34 0.36 +0.08 0.34 0.36 +0.1 0.34 0.36 +0.9 0.34 0.36 +0.92 0.34 0.36 +0.94 0.34 0.36 +0.06 0.36 0.36 +0.08 0.36 0.36 +0.92 0.36 0.36 +0.94 0.36 0.36 +0.04 0.38 0.36 +0.06 0.38 0.36 +0.08 0.38 0.36 +0.92 0.38 0.36 +0.94 0.38 0.36 +0.96 0.38 0.36 +0.04 0.4 0.36 +0.06 0.4 0.36 +0.08 0.4 0.36 +0.92 0.4 0.36 +0.94 0.4 0.36 +0.96 0.4 0.36 +0.04 0.42 0.36 +0.06 0.42 0.36 +0.94 0.42 0.36 +0.96 0.42 0.36 +0.04 0.44 0.36 +0.06 0.44 0.36 +0.94 0.44 0.36 +0.96 0.44 0.36 +0.04 0.46 0.36 +0.06 0.46 0.36 +0.94 0.46 0.36 +0.96 0.46 0.36 +0.04 0.48 0.36 +0.06 0.48 0.36 +0.94 0.48 0.36 +0.96 0.48 0.36 +0.04 0.5 0.36 +0.06 0.5 0.36 +0.94 0.5 0.36 +0.96 0.5 0.36 +0.04 0.52 0.36 +0.06 0.52 0.36 +0.94 0.52 0.36 +0.96 0.52 0.36 +0.04 0.54 0.36 +0.06 0.54 0.36 +0.94 0.54 0.36 +0.96 0.54 0.36 +0.04 0.56 0.36 +0.06 0.56 0.36 +0.94 0.56 0.36 +0.96 0.56 0.36 +0.04 0.58 0.36 +0.06 0.58 0.36 +0.94 0.58 0.36 +0.96 0.58 0.36 +0.04 0.6 0.36 +0.06 0.6 0.36 +0.08 0.6 0.36 +0.92 0.6 0.36 +0.94 0.6 0.36 +0.96 0.6 0.36 +0.04 0.62 0.36 +0.06 0.62 0.36 +0.08 0.62 0.36 +0.92 0.62 0.36 +0.94 0.62 0.36 +0.96 0.62 0.36 +0.06 0.64 0.36 +0.08 0.64 0.36 +0.92 0.64 0.36 +0.94 0.64 0.36 +0.06 0.66 0.36 +0.08 0.66 0.36 +0.1 0.66 0.36 +0.9 0.66 0.36 +0.92 0.66 0.36 +0.94 0.66 0.36 +0.06 0.68 0.36 +0.08 0.68 0.36 +0.1 0.68 0.36 +0.9 0.68 0.36 +0.92 0.68 0.36 +0.94 0.68 0.36 +0.08 0.7 0.36 +0.1 0.7 0.36 +0.12 0.7 0.36 +0.88 0.7 0.36 +0.9 0.7 0.36 +0.92 0.7 0.36 +0.08 0.72 0.36 +0.1 0.72 0.36 +0.12 0.72 0.36 +0.88 0.72 0.36 +0.9 0.72 0.36 +0.92 0.72 0.36 +0.1 0.74 0.36 +0.12 0.74 0.36 +0.14 0.74 0.36 +0.86 0.74 0.36 +0.88 0.74 0.36 +0.9 0.74 0.36 +0.1 0.76 0.36 +0.12 0.76 0.36 +0.14 0.76 0.36 +0.16 0.76 0.36 +0.84 0.76 0.36 +0.86 0.76 0.36 +0.88 0.76 0.36 +0.9 0.76 0.36 +0.12 0.78 0.36 +0.14 0.78 0.36 +0.16 0.78 0.36 +0.84 0.78 0.36 +0.86 0.78 0.36 +0.88 0.78 0.36 +0.14 0.8 0.36 +0.16 0.8 0.36 +0.18 0.8 0.36 +0.82 0.8 0.36 +0.84 0.8 0.36 +0.86 0.8 0.36 +0.16 0.82 0.36 +0.18 0.82 0.36 +0.2 0.82 0.36 +0.8 0.82 0.36 +0.82 0.82 0.36 +0.84 0.82 0.36 +0.18 0.84 0.36 +0.2 0.84 0.36 +0.22 0.84 0.36 +0.24 0.84 0.36 +0.76 0.84 0.36 +0.78 0.84 0.36 +0.8 0.84 0.36 +0.82 0.84 0.36 +0.2 0.86 0.36 +0.22 0.86 0.36 +0.24 0.86 0.36 +0.26 0.86 0.36 +0.74 0.86 0.36 +0.76 0.86 0.36 +0.78 0.86 0.36 +0.8 0.86 0.36 +0.22 0.88 0.36 +0.24 0.88 0.36 +0.26 0.88 0.36 +0.28 0.88 0.36 +0.3 0.88 0.36 +0.7 0.88 0.36 +0.72 0.88 0.36 +0.74 0.88 0.36 +0.76 0.88 0.36 +0.78 0.88 0.36 +0.24 0.9 0.36 +0.26 0.9 0.36 +0.28 0.9 0.36 +0.3 0.9 0.36 +0.32 0.9 0.36 +0.34 0.9 0.36 +0.66 0.9 0.36 +0.68 0.9 0.36 +0.7 0.9 0.36 +0.72 0.9 0.36 +0.74 0.9 0.36 +0.76 0.9 0.36 +0.28 0.92 0.36 +0.3 0.92 0.36 +0.32 0.92 0.36 +0.34 0.92 0.36 +0.36 0.92 0.36 +0.38 0.92 0.36 +0.4 0.92 0.36 +0.6 0.92 0.36 +0.62 0.92 0.36 +0.64 0.92 0.36 +0.66 0.92 0.36 +0.68 0.92 0.36 +0.7 0.92 0.36 +0.72 0.92 0.36 +0.32 0.94 0.36 +0.34 0.94 0.36 +0.36 0.94 0.36 +0.38 0.94 0.36 +0.4 0.94 0.36 +0.42 0.94 0.36 +0.44 0.94 0.36 +0.46 0.94 0.36 +0.48 0.94 0.36 +0.5 0.94 0.36 +0.52 0.94 0.36 +0.54 0.94 0.36 +0.56 0.94 0.36 +0.58 0.94 0.36 +0.6 0.94 0.36 +0.62 0.94 0.36 +0.64 0.94 0.36 +0.66 0.94 0.36 +0.68 0.94 0.36 +0.38 0.96 0.36 +0.4 0.96 0.36 +0.42 0.96 0.36 +0.44 0.96 0.36 +0.46 0.96 0.36 +0.48 0.96 0.36 +0.5 0.96 0.36 +0.52 0.96 0.36 +0.54 0.96 0.36 +0.56 0.96 0.36 +0.58 0.96 0.36 +0.6 0.96 0.36 +0.62 0.96 0.36 +0.44 0.02 0.38 +0.46 0.02 0.38 +0.48 0.02 0.38 +0.5 0.02 0.38 +0.52 0.02 0.38 +0.54 0.02 0.38 +0.56 0.02 0.38 +0.36 0.04 0.38 +0.38 0.04 0.38 +0.4 0.04 0.38 +0.42 0.04 0.38 +0.44 0.04 0.38 +0.46 0.04 0.38 +0.48 0.04 0.38 +0.5 0.04 0.38 +0.52 0.04 0.38 +0.54 0.04 0.38 +0.56 0.04 0.38 +0.58 0.04 0.38 +0.6 0.04 0.38 +0.62 0.04 0.38 +0.64 0.04 0.38 +0.3 0.06 0.38 +0.32 0.06 0.38 +0.34 0.06 0.38 +0.36 0.06 0.38 +0.38 0.06 0.38 +0.4 0.06 0.38 +0.42 0.06 0.38 +0.44 0.06 0.38 +0.46 0.06 0.38 +0.48 0.06 0.38 +0.5 0.06 0.38 +0.52 0.06 0.38 +0.54 0.06 0.38 +0.56 0.06 0.38 +0.58 0.06 0.38 +0.6 0.06 0.38 +0.62 0.06 0.38 +0.64 0.06 0.38 +0.66 0.06 0.38 +0.68 0.06 0.38 +0.7 0.06 0.38 +0.26 0.08 0.38 +0.28 0.08 0.38 +0.3 0.08 0.38 +0.32 0.08 0.38 +0.34 0.08 0.38 +0.36 0.08 0.38 +0.38 0.08 0.38 +0.62 0.08 0.38 +0.64 0.08 0.38 +0.66 0.08 0.38 +0.68 0.08 0.38 +0.7 0.08 0.38 +0.72 0.08 0.38 +0.74 0.08 0.38 +0.24 0.1 0.38 +0.26 0.1 0.38 +0.28 0.1 0.38 +0.3 0.1 0.38 +0.32 0.1 0.38 +0.68 0.1 0.38 +0.7 0.1 0.38 +0.72 0.1 0.38 +0.74 0.1 0.38 +0.76 0.1 0.38 +0.2 0.12 0.38 +0.22 0.12 0.38 +0.24 0.12 0.38 +0.26 0.12 0.38 +0.28 0.12 0.38 +0.72 0.12 0.38 +0.74 0.12 0.38 +0.76 0.12 0.38 +0.78 0.12 0.38 +0.8 0.12 0.38 +0.18 0.14 0.38 +0.2 0.14 0.38 +0.22 0.14 0.38 +0.24 0.14 0.38 +0.76 0.14 0.38 +0.78 0.14 0.38 +0.8 0.14 0.38 +0.82 0.14 0.38 +0.16 0.16 0.38 +0.18 0.16 0.38 +0.2 0.16 0.38 +0.22 0.16 0.38 +0.78 0.16 0.38 +0.8 0.16 0.38 +0.82 0.16 0.38 +0.84 0.16 0.38 +0.14 0.18 0.38 +0.16 0.18 0.38 +0.18 0.18 0.38 +0.2 0.18 0.38 +0.8 0.18 0.38 +0.82 0.18 0.38 +0.84 0.18 0.38 +0.86 0.18 0.38 +0.12 0.2 0.38 +0.14 0.2 0.38 +0.16 0.2 0.38 +0.18 0.2 0.38 +0.82 0.2 0.38 +0.84 0.2 0.38 +0.86 0.2 0.38 +0.88 0.2 0.38 +0.12 0.22 0.38 +0.14 0.22 0.38 +0.16 0.22 0.38 +0.84 0.22 0.38 +0.86 0.22 0.38 +0.88 0.22 0.38 +0.1 0.24 0.38 +0.12 0.24 0.38 +0.14 0.24 0.38 +0.86 0.24 0.38 +0.88 0.24 0.38 +0.9 0.24 0.38 +0.08 0.26 0.38 +0.1 0.26 0.38 +0.12 0.26 0.38 +0.88 0.26 0.38 +0.9 0.26 0.38 +0.92 0.26 0.38 +0.08 0.28 0.38 +0.1 0.28 0.38 +0.12 0.28 0.38 +0.88 0.28 0.38 +0.9 0.28 0.38 +0.92 0.28 0.38 +0.06 0.3 0.38 +0.08 0.3 0.38 +0.1 0.3 0.38 +0.9 0.3 0.38 +0.92 0.3 0.38 +0.94 0.3 0.38 +0.06 0.32 0.38 +0.08 0.32 0.38 +0.1 0.32 0.38 +0.9 0.32 0.38 +0.92 0.32 0.38 +0.94 0.32 0.38 +0.06 0.34 0.38 +0.08 0.34 0.38 +0.92 0.34 0.38 +0.94 0.34 0.38 +0.04 0.36 0.38 +0.06 0.36 0.38 +0.08 0.36 0.38 +0.92 0.36 0.38 +0.94 0.36 0.38 +0.96 0.36 0.38 +0.04 0.38 0.38 +0.06 0.38 0.38 +0.08 0.38 0.38 +0.92 0.38 0.38 +0.94 0.38 0.38 +0.96 0.38 0.38 +0.04 0.4 0.38 +0.06 0.4 0.38 +0.94 0.4 0.38 +0.96 0.4 0.38 +0.04 0.42 0.38 +0.06 0.42 0.38 +0.94 0.42 0.38 +0.96 0.42 0.38 +0.02 0.44 0.38 +0.04 0.44 0.38 +0.06 0.44 0.38 +0.94 0.44 0.38 +0.96 0.44 0.38 +0.98 0.44 0.38 +0.02 0.46 0.38 +0.04 0.46 0.38 +0.06 0.46 0.38 +0.94 0.46 0.38 +0.96 0.46 0.38 +0.98 0.46 0.38 +0.02 0.48 0.38 +0.04 0.48 0.38 +0.06 0.48 0.38 +0.94 0.48 0.38 +0.96 0.48 0.38 +0.98 0.48 0.38 +0.02 0.5 0.38 +0.04 0.5 0.38 +0.06 0.5 0.38 +0.94 0.5 0.38 +0.96 0.5 0.38 +0.98 0.5 0.38 +0.02 0.52 0.38 +0.04 0.52 0.38 +0.06 0.52 0.38 +0.94 0.52 0.38 +0.96 0.52 0.38 +0.98 0.52 0.38 +0.02 0.54 0.38 +0.04 0.54 0.38 +0.06 0.54 0.38 +0.94 0.54 0.38 +0.96 0.54 0.38 +0.98 0.54 0.38 +0.02 0.56 0.38 +0.04 0.56 0.38 +0.06 0.56 0.38 +0.94 0.56 0.38 +0.96 0.56 0.38 +0.98 0.56 0.38 +0.04 0.58 0.38 +0.06 0.58 0.38 +0.94 0.58 0.38 +0.96 0.58 0.38 +0.04 0.6 0.38 +0.06 0.6 0.38 +0.94 0.6 0.38 +0.96 0.6 0.38 +0.04 0.62 0.38 +0.06 0.62 0.38 +0.08 0.62 0.38 +0.92 0.62 0.38 +0.94 0.62 0.38 +0.96 0.62 0.38 +0.04 0.64 0.38 +0.06 0.64 0.38 +0.08 0.64 0.38 +0.92 0.64 0.38 +0.94 0.64 0.38 +0.96 0.64 0.38 +0.06 0.66 0.38 +0.08 0.66 0.38 +0.92 0.66 0.38 +0.94 0.66 0.38 +0.06 0.68 0.38 +0.08 0.68 0.38 +0.1 0.68 0.38 +0.9 0.68 0.38 +0.92 0.68 0.38 +0.94 0.68 0.38 +0.06 0.7 0.38 +0.08 0.7 0.38 +0.1 0.7 0.38 +0.9 0.7 0.38 +0.92 0.7 0.38 +0.94 0.7 0.38 +0.08 0.72 0.38 +0.1 0.72 0.38 +0.12 0.72 0.38 +0.88 0.72 0.38 +0.9 0.72 0.38 +0.92 0.72 0.38 +0.08 0.74 0.38 +0.1 0.74 0.38 +0.12 0.74 0.38 +0.88 0.74 0.38 +0.9 0.74 0.38 +0.92 0.74 0.38 +0.1 0.76 0.38 +0.12 0.76 0.38 +0.14 0.76 0.38 +0.86 0.76 0.38 +0.88 0.76 0.38 +0.9 0.76 0.38 +0.12 0.78 0.38 +0.14 0.78 0.38 +0.16 0.78 0.38 +0.84 0.78 0.38 +0.86 0.78 0.38 +0.88 0.78 0.38 +0.12 0.8 0.38 +0.14 0.8 0.38 +0.16 0.8 0.38 +0.18 0.8 0.38 +0.82 0.8 0.38 +0.84 0.8 0.38 +0.86 0.8 0.38 +0.88 0.8 0.38 +0.14 0.82 0.38 +0.16 0.82 0.38 +0.18 0.82 0.38 +0.2 0.82 0.38 +0.8 0.82 0.38 +0.82 0.82 0.38 +0.84 0.82 0.38 +0.86 0.82 0.38 +0.16 0.84 0.38 +0.18 0.84 0.38 +0.2 0.84 0.38 +0.22 0.84 0.38 +0.78 0.84 0.38 +0.8 0.84 0.38 +0.82 0.84 0.38 +0.84 0.84 0.38 +0.18 0.86 0.38 +0.2 0.86 0.38 +0.22 0.86 0.38 +0.24 0.86 0.38 +0.76 0.86 0.38 +0.78 0.86 0.38 +0.8 0.86 0.38 +0.82 0.86 0.38 +0.2 0.88 0.38 +0.22 0.88 0.38 +0.24 0.88 0.38 +0.26 0.88 0.38 +0.28 0.88 0.38 +0.72 0.88 0.38 +0.74 0.88 0.38 +0.76 0.88 0.38 +0.78 0.88 0.38 +0.8 0.88 0.38 +0.24 0.9 0.38 +0.26 0.9 0.38 +0.28 0.9 0.38 +0.3 0.9 0.38 +0.32 0.9 0.38 +0.68 0.9 0.38 +0.7 0.9 0.38 +0.72 0.9 0.38 +0.74 0.9 0.38 +0.76 0.9 0.38 +0.26 0.92 0.38 +0.28 0.92 0.38 +0.3 0.92 0.38 +0.32 0.92 0.38 +0.34 0.92 0.38 +0.36 0.92 0.38 +0.38 0.92 0.38 +0.62 0.92 0.38 +0.64 0.92 0.38 +0.66 0.92 0.38 +0.68 0.92 0.38 +0.7 0.92 0.38 +0.72 0.92 0.38 +0.74 0.92 0.38 +0.3 0.94 0.38 +0.32 0.94 0.38 +0.34 0.94 0.38 +0.36 0.94 0.38 +0.38 0.94 0.38 +0.4 0.94 0.38 +0.42 0.94 0.38 +0.44 0.94 0.38 +0.46 0.94 0.38 +0.48 0.94 0.38 +0.5 0.94 0.38 +0.52 0.94 0.38 +0.54 0.94 0.38 +0.56 0.94 0.38 +0.58 0.94 0.38 +0.6 0.94 0.38 +0.62 0.94 0.38 +0.64 0.94 0.38 +0.66 0.94 0.38 +0.68 0.94 0.38 +0.7 0.94 0.38 +0.36 0.96 0.38 +0.38 0.96 0.38 +0.4 0.96 0.38 +0.42 0.96 0.38 +0.44 0.96 0.38 +0.46 0.96 0.38 +0.48 0.96 0.38 +0.5 0.96 0.38 +0.52 0.96 0.38 +0.54 0.96 0.38 +0.56 0.96 0.38 +0.58 0.96 0.38 +0.6 0.96 0.38 +0.62 0.96 0.38 +0.64 0.96 0.38 +0.44 0.98 0.38 +0.46 0.98 0.38 +0.48 0.98 0.38 +0.5 0.98 0.38 +0.52 0.98 0.38 +0.54 0.98 0.38 +0.56 0.98 0.38 +0.42 0.02 0.4 +0.44 0.02 0.4 +0.46 0.02 0.4 +0.48 0.02 0.4 +0.5 0.02 0.4 +0.52 0.02 0.4 +0.54 0.02 0.4 +0.56 0.02 0.4 +0.58 0.02 0.4 +0.34 0.04 0.4 +0.36 0.04 0.4 +0.38 0.04 0.4 +0.4 0.04 0.4 +0.42 0.04 0.4 +0.44 0.04 0.4 +0.46 0.04 0.4 +0.48 0.04 0.4 +0.5 0.04 0.4 +0.52 0.04 0.4 +0.54 0.04 0.4 +0.56 0.04 0.4 +0.58 0.04 0.4 +0.6 0.04 0.4 +0.62 0.04 0.4 +0.64 0.04 0.4 +0.66 0.04 0.4 +0.3 0.06 0.4 +0.32 0.06 0.4 +0.34 0.06 0.4 +0.36 0.06 0.4 +0.38 0.06 0.4 +0.4 0.06 0.4 +0.42 0.06 0.4 +0.44 0.06 0.4 +0.46 0.06 0.4 +0.48 0.06 0.4 +0.5 0.06 0.4 +0.52 0.06 0.4 +0.54 0.06 0.4 +0.56 0.06 0.4 +0.58 0.06 0.4 +0.6 0.06 0.4 +0.62 0.06 0.4 +0.64 0.06 0.4 +0.66 0.06 0.4 +0.68 0.06 0.4 +0.7 0.06 0.4 +0.26 0.08 0.4 +0.28 0.08 0.4 +0.3 0.08 0.4 +0.32 0.08 0.4 +0.34 0.08 0.4 +0.36 0.08 0.4 +0.64 0.08 0.4 +0.66 0.08 0.4 +0.68 0.08 0.4 +0.7 0.08 0.4 +0.72 0.08 0.4 +0.74 0.08 0.4 +0.22 0.1 0.4 +0.24 0.1 0.4 +0.26 0.1 0.4 +0.28 0.1 0.4 +0.3 0.1 0.4 +0.7 0.1 0.4 +0.72 0.1 0.4 +0.74 0.1 0.4 +0.76 0.1 0.4 +0.78 0.1 0.4 +0.2 0.12 0.4 +0.22 0.12 0.4 +0.24 0.12 0.4 +0.26 0.12 0.4 +0.28 0.12 0.4 +0.72 0.12 0.4 +0.74 0.12 0.4 +0.76 0.12 0.4 +0.78 0.12 0.4 +0.8 0.12 0.4 +0.18 0.14 0.4 +0.2 0.14 0.4 +0.22 0.14 0.4 +0.24 0.14 0.4 +0.76 0.14 0.4 +0.78 0.14 0.4 +0.8 0.14 0.4 +0.82 0.14 0.4 +0.16 0.16 0.4 +0.18 0.16 0.4 +0.2 0.16 0.4 +0.22 0.16 0.4 +0.78 0.16 0.4 +0.8 0.16 0.4 +0.82 0.16 0.4 +0.84 0.16 0.4 +0.14 0.18 0.4 +0.16 0.18 0.4 +0.18 0.18 0.4 +0.82 0.18 0.4 +0.84 0.18 0.4 +0.86 0.18 0.4 +0.12 0.2 0.4 +0.14 0.2 0.4 +0.16 0.2 0.4 +0.84 0.2 0.4 +0.86 0.2 0.4 +0.88 0.2 0.4 +0.1 0.22 0.4 +0.12 0.22 0.4 +0.14 0.22 0.4 +0.16 0.22 0.4 +0.84 0.22 0.4 +0.86 0.22 0.4 +0.88 0.22 0.4 +0.9 0.22 0.4 +0.1 0.24 0.4 +0.12 0.24 0.4 +0.14 0.24 0.4 +0.86 0.24 0.4 +0.88 0.24 0.4 +0.9 0.24 0.4 +0.08 0.26 0.4 +0.1 0.26 0.4 +0.12 0.26 0.4 +0.88 0.26 0.4 +0.9 0.26 0.4 +0.92 0.26 0.4 +0.08 0.28 0.4 +0.1 0.28 0.4 +0.12 0.28 0.4 +0.88 0.28 0.4 +0.9 0.28 0.4 +0.92 0.28 0.4 +0.06 0.3 0.4 +0.08 0.3 0.4 +0.1 0.3 0.4 +0.9 0.3 0.4 +0.92 0.3 0.4 +0.94 0.3 0.4 +0.06 0.32 0.4 +0.08 0.32 0.4 +0.92 0.32 0.4 +0.94 0.32 0.4 +0.04 0.34 0.4 +0.06 0.34 0.4 +0.08 0.34 0.4 +0.92 0.34 0.4 +0.94 0.34 0.4 +0.96 0.34 0.4 +0.04 0.36 0.4 +0.06 0.36 0.4 +0.08 0.36 0.4 +0.92 0.36 0.4 +0.94 0.36 0.4 +0.96 0.36 0.4 +0.04 0.38 0.4 +0.06 0.38 0.4 +0.94 0.38 0.4 +0.96 0.38 0.4 +0.04 0.4 0.4 +0.06 0.4 0.4 +0.94 0.4 0.4 +0.96 0.4 0.4 +0.02 0.42 0.4 +0.04 0.42 0.4 +0.06 0.42 0.4 +0.94 0.42 0.4 +0.96 0.42 0.4 +0.98 0.42 0.4 +0.02 0.44 0.4 +0.04 0.44 0.4 +0.06 0.44 0.4 +0.94 0.44 0.4 +0.96 0.44 0.4 +0.98 0.44 0.4 +0.02 0.46 0.4 +0.04 0.46 0.4 +0.06 0.46 0.4 +0.94 0.46 0.4 +0.96 0.46 0.4 +0.98 0.46 0.4 +0.02 0.48 0.4 +0.04 0.48 0.4 +0.06 0.48 0.4 +0.94 0.48 0.4 +0.96 0.48 0.4 +0.98 0.48 0.4 +0.02 0.5 0.4 +0.04 0.5 0.4 +0.06 0.5 0.4 +0.94 0.5 0.4 +0.96 0.5 0.4 +0.98 0.5 0.4 +0.02 0.52 0.4 +0.04 0.52 0.4 +0.06 0.52 0.4 +0.94 0.52 0.4 +0.96 0.52 0.4 +0.98 0.52 0.4 +0.02 0.54 0.4 +0.04 0.54 0.4 +0.06 0.54 0.4 +0.94 0.54 0.4 +0.96 0.54 0.4 +0.98 0.54 0.4 +0.02 0.56 0.4 +0.04 0.56 0.4 +0.06 0.56 0.4 +0.94 0.56 0.4 +0.96 0.56 0.4 +0.98 0.56 0.4 +0.02 0.58 0.4 +0.04 0.58 0.4 +0.06 0.58 0.4 +0.94 0.58 0.4 +0.96 0.58 0.4 +0.98 0.58 0.4 +0.04 0.6 0.4 +0.06 0.6 0.4 +0.94 0.6 0.4 +0.96 0.6 0.4 +0.04 0.62 0.4 +0.06 0.62 0.4 +0.94 0.62 0.4 +0.96 0.62 0.4 +0.04 0.64 0.4 +0.06 0.64 0.4 +0.08 0.64 0.4 +0.92 0.64 0.4 +0.94 0.64 0.4 +0.96 0.64 0.4 +0.04 0.66 0.4 +0.06 0.66 0.4 +0.08 0.66 0.4 +0.92 0.66 0.4 +0.94 0.66 0.4 +0.96 0.66 0.4 +0.06 0.68 0.4 +0.08 0.68 0.4 +0.92 0.68 0.4 +0.94 0.68 0.4 +0.06 0.7 0.4 +0.08 0.7 0.4 +0.1 0.7 0.4 +0.9 0.7 0.4 +0.92 0.7 0.4 +0.94 0.7 0.4 +0.08 0.72 0.4 +0.1 0.72 0.4 +0.12 0.72 0.4 +0.88 0.72 0.4 +0.9 0.72 0.4 +0.92 0.72 0.4 +0.08 0.74 0.4 +0.1 0.74 0.4 +0.12 0.74 0.4 +0.88 0.74 0.4 +0.9 0.74 0.4 +0.92 0.74 0.4 +0.1 0.76 0.4 +0.12 0.76 0.4 +0.14 0.76 0.4 +0.86 0.76 0.4 +0.88 0.76 0.4 +0.9 0.76 0.4 +0.1 0.78 0.4 +0.12 0.78 0.4 +0.14 0.78 0.4 +0.16 0.78 0.4 +0.84 0.78 0.4 +0.86 0.78 0.4 +0.88 0.78 0.4 +0.9 0.78 0.4 +0.12 0.8 0.4 +0.14 0.8 0.4 +0.16 0.8 0.4 +0.84 0.8 0.4 +0.86 0.8 0.4 +0.88 0.8 0.4 +0.14 0.82 0.4 +0.16 0.82 0.4 +0.18 0.82 0.4 +0.82 0.82 0.4 +0.84 0.82 0.4 +0.86 0.82 0.4 +0.16 0.84 0.4 +0.18 0.84 0.4 +0.2 0.84 0.4 +0.22 0.84 0.4 +0.78 0.84 0.4 +0.8 0.84 0.4 +0.82 0.84 0.4 +0.84 0.84 0.4 +0.18 0.86 0.4 +0.2 0.86 0.4 +0.22 0.86 0.4 +0.24 0.86 0.4 +0.76 0.86 0.4 +0.78 0.86 0.4 +0.8 0.86 0.4 +0.82 0.86 0.4 +0.2 0.88 0.4 +0.22 0.88 0.4 +0.24 0.88 0.4 +0.26 0.88 0.4 +0.28 0.88 0.4 +0.72 0.88 0.4 +0.74 0.88 0.4 +0.76 0.88 0.4 +0.78 0.88 0.4 +0.8 0.88 0.4 +0.22 0.9 0.4 +0.24 0.9 0.4 +0.26 0.9 0.4 +0.28 0.9 0.4 +0.3 0.9 0.4 +0.7 0.9 0.4 +0.72 0.9 0.4 +0.74 0.9 0.4 +0.76 0.9 0.4 +0.78 0.9 0.4 +0.26 0.92 0.4 +0.28 0.92 0.4 +0.3 0.92 0.4 +0.32 0.92 0.4 +0.34 0.92 0.4 +0.36 0.92 0.4 +0.64 0.92 0.4 +0.66 0.92 0.4 +0.68 0.92 0.4 +0.7 0.92 0.4 +0.72 0.92 0.4 +0.74 0.92 0.4 +0.3 0.94 0.4 +0.32 0.94 0.4 +0.34 0.94 0.4 +0.36 0.94 0.4 +0.38 0.94 0.4 +0.4 0.94 0.4 +0.42 0.94 0.4 +0.44 0.94 0.4 +0.46 0.94 0.4 +0.48 0.94 0.4 +0.5 0.94 0.4 +0.52 0.94 0.4 +0.54 0.94 0.4 +0.56 0.94 0.4 +0.58 0.94 0.4 +0.6 0.94 0.4 +0.62 0.94 0.4 +0.64 0.94 0.4 +0.66 0.94 0.4 +0.68 0.94 0.4 +0.7 0.94 0.4 +0.34 0.96 0.4 +0.36 0.96 0.4 +0.38 0.96 0.4 +0.4 0.96 0.4 +0.42 0.96 0.4 +0.44 0.96 0.4 +0.46 0.96 0.4 +0.48 0.96 0.4 +0.5 0.96 0.4 +0.52 0.96 0.4 +0.54 0.96 0.4 +0.56 0.96 0.4 +0.58 0.96 0.4 +0.6 0.96 0.4 +0.62 0.96 0.4 +0.64 0.96 0.4 +0.66 0.96 0.4 +0.42 0.98 0.4 +0.44 0.98 0.4 +0.46 0.98 0.4 +0.48 0.98 0.4 +0.5 0.98 0.4 +0.52 0.98 0.4 +0.54 0.98 0.4 +0.56 0.98 0.4 +0.58 0.98 0.4 +0.4 0.02 0.42 +0.42 0.02 0.42 +0.44 0.02 0.42 +0.46 0.02 0.42 +0.48 0.02 0.42 +0.5 0.02 0.42 +0.52 0.02 0.42 +0.54 0.02 0.42 +0.56 0.02 0.42 +0.58 0.02 0.42 +0.6 0.02 0.42 +0.34 0.04 0.42 +0.36 0.04 0.42 +0.38 0.04 0.42 +0.4 0.04 0.42 +0.42 0.04 0.42 +0.44 0.04 0.42 +0.46 0.04 0.42 +0.48 0.04 0.42 +0.5 0.04 0.42 +0.52 0.04 0.42 +0.54 0.04 0.42 +0.56 0.04 0.42 +0.58 0.04 0.42 +0.6 0.04 0.42 +0.62 0.04 0.42 +0.64 0.04 0.42 +0.66 0.04 0.42 +0.28 0.06 0.42 +0.3 0.06 0.42 +0.32 0.06 0.42 +0.34 0.06 0.42 +0.36 0.06 0.42 +0.38 0.06 0.42 +0.4 0.06 0.42 +0.42 0.06 0.42 +0.44 0.06 0.42 +0.56 0.06 0.42 +0.58 0.06 0.42 +0.6 0.06 0.42 +0.62 0.06 0.42 +0.64 0.06 0.42 +0.66 0.06 0.42 +0.68 0.06 0.42 +0.7 0.06 0.42 +0.72 0.06 0.42 +0.26 0.08 0.42 +0.28 0.08 0.42 +0.3 0.08 0.42 +0.32 0.08 0.42 +0.34 0.08 0.42 +0.66 0.08 0.42 +0.68 0.08 0.42 +0.7 0.08 0.42 +0.72 0.08 0.42 +0.74 0.08 0.42 +0.22 0.1 0.42 +0.24 0.1 0.42 +0.26 0.1 0.42 +0.28 0.1 0.42 +0.3 0.1 0.42 +0.7 0.1 0.42 +0.72 0.1 0.42 +0.74 0.1 0.42 +0.76 0.1 0.42 +0.78 0.1 0.42 +0.2 0.12 0.42 +0.22 0.12 0.42 +0.24 0.12 0.42 +0.26 0.12 0.42 +0.74 0.12 0.42 +0.76 0.12 0.42 +0.78 0.12 0.42 +0.8 0.12 0.42 +0.18 0.14 0.42 +0.2 0.14 0.42 +0.22 0.14 0.42 +0.24 0.14 0.42 +0.76 0.14 0.42 +0.78 0.14 0.42 +0.8 0.14 0.42 +0.82 0.14 0.42 +0.16 0.16 0.42 +0.18 0.16 0.42 +0.2 0.16 0.42 +0.8 0.16 0.42 +0.82 0.16 0.42 +0.84 0.16 0.42 +0.14 0.18 0.42 +0.16 0.18 0.42 +0.18 0.18 0.42 +0.82 0.18 0.42 +0.84 0.18 0.42 +0.86 0.18 0.42 +0.12 0.2 0.42 +0.14 0.2 0.42 +0.16 0.2 0.42 +0.84 0.2 0.42 +0.86 0.2 0.42 +0.88 0.2 0.42 +0.1 0.22 0.42 +0.12 0.22 0.42 +0.14 0.22 0.42 +0.86 0.22 0.42 +0.88 0.22 0.42 +0.9 0.22 0.42 +0.1 0.24 0.42 +0.12 0.24 0.42 +0.14 0.24 0.42 +0.86 0.24 0.42 +0.88 0.24 0.42 +0.9 0.24 0.42 +0.08 0.26 0.42 +0.1 0.26 0.42 +0.12 0.26 0.42 +0.88 0.26 0.42 +0.9 0.26 0.42 +0.92 0.26 0.42 +0.06 0.28 0.42 +0.08 0.28 0.42 +0.1 0.28 0.42 +0.9 0.28 0.42 +0.92 0.28 0.42 +0.94 0.28 0.42 +0.06 0.3 0.42 +0.08 0.3 0.42 +0.1 0.3 0.42 +0.9 0.3 0.42 +0.92 0.3 0.42 +0.94 0.3 0.42 +0.06 0.32 0.42 +0.08 0.32 0.42 +0.92 0.32 0.42 +0.94 0.32 0.42 +0.04 0.34 0.42 +0.06 0.34 0.42 +0.08 0.34 0.42 +0.92 0.34 0.42 +0.94 0.34 0.42 +0.96 0.34 0.42 +0.04 0.36 0.42 +0.06 0.36 0.42 +0.94 0.36 0.42 +0.96 0.36 0.42 +0.04 0.38 0.42 +0.06 0.38 0.42 +0.94 0.38 0.42 +0.96 0.38 0.42 +0.02 0.4 0.42 +0.04 0.4 0.42 +0.06 0.4 0.42 +0.94 0.4 0.42 +0.96 0.4 0.42 +0.98 0.4 0.42 +0.02 0.42 0.42 +0.04 0.42 0.42 +0.06 0.42 0.42 +0.94 0.42 0.42 +0.96 0.42 0.42 +0.98 0.42 0.42 +0.02 0.44 0.42 +0.04 0.44 0.42 +0.06 0.44 0.42 +0.94 0.44 0.42 +0.96 0.44 0.42 +0.98 0.44 0.42 +0.02 0.46 0.42 +0.04 0.46 0.42 +0.96 0.46 0.42 +0.98 0.46 0.42 +0.02 0.48 0.42 +0.04 0.48 0.42 +0.96 0.48 0.42 +0.98 0.48 0.42 +0.02 0.5 0.42 +0.04 0.5 0.42 +0.96 0.5 0.42 +0.98 0.5 0.42 +0.02 0.52 0.42 +0.04 0.52 0.42 +0.96 0.52 0.42 +0.98 0.52 0.42 +0.02 0.54 0.42 +0.04 0.54 0.42 +0.96 0.54 0.42 +0.98 0.54 0.42 +0.02 0.56 0.42 +0.04 0.56 0.42 +0.06 0.56 0.42 +0.94 0.56 0.42 +0.96 0.56 0.42 +0.98 0.56 0.42 +0.02 0.58 0.42 +0.04 0.58 0.42 +0.06 0.58 0.42 +0.94 0.58 0.42 +0.96 0.58 0.42 +0.98 0.58 0.42 +0.02 0.6 0.42 +0.04 0.6 0.42 +0.06 0.6 0.42 +0.94 0.6 0.42 +0.96 0.6 0.42 +0.98 0.6 0.42 +0.04 0.62 0.42 +0.06 0.62 0.42 +0.94 0.62 0.42 +0.96 0.62 0.42 +0.04 0.64 0.42 +0.06 0.64 0.42 +0.94 0.64 0.42 +0.96 0.64 0.42 +0.04 0.66 0.42 +0.06 0.66 0.42 +0.08 0.66 0.42 +0.92 0.66 0.42 +0.94 0.66 0.42 +0.96 0.66 0.42 +0.06 0.68 0.42 +0.08 0.68 0.42 +0.92 0.68 0.42 +0.94 0.68 0.42 +0.06 0.7 0.42 +0.08 0.7 0.42 +0.1 0.7 0.42 +0.9 0.7 0.42 +0.92 0.7 0.42 +0.94 0.7 0.42 +0.06 0.72 0.42 +0.08 0.72 0.42 +0.1 0.72 0.42 +0.9 0.72 0.42 +0.92 0.72 0.42 +0.94 0.72 0.42 +0.08 0.74 0.42 +0.1 0.74 0.42 +0.12 0.74 0.42 +0.88 0.74 0.42 +0.9 0.74 0.42 +0.92 0.74 0.42 +0.1 0.76 0.42 +0.12 0.76 0.42 +0.14 0.76 0.42 +0.86 0.76 0.42 +0.88 0.76 0.42 +0.9 0.76 0.42 +0.1 0.78 0.42 +0.12 0.78 0.42 +0.14 0.78 0.42 +0.86 0.78 0.42 +0.88 0.78 0.42 +0.9 0.78 0.42 +0.12 0.8 0.42 +0.14 0.8 0.42 +0.16 0.8 0.42 +0.84 0.8 0.42 +0.86 0.8 0.42 +0.88 0.8 0.42 +0.14 0.82 0.42 +0.16 0.82 0.42 +0.18 0.82 0.42 +0.82 0.82 0.42 +0.84 0.82 0.42 +0.86 0.82 0.42 +0.16 0.84 0.42 +0.18 0.84 0.42 +0.2 0.84 0.42 +0.8 0.84 0.42 +0.82 0.84 0.42 +0.84 0.84 0.42 +0.18 0.86 0.42 +0.2 0.86 0.42 +0.22 0.86 0.42 +0.24 0.86 0.42 +0.76 0.86 0.42 +0.78 0.86 0.42 +0.8 0.86 0.42 +0.82 0.86 0.42 +0.2 0.88 0.42 +0.22 0.88 0.42 +0.24 0.88 0.42 +0.26 0.88 0.42 +0.74 0.88 0.42 +0.76 0.88 0.42 +0.78 0.88 0.42 +0.8 0.88 0.42 +0.22 0.9 0.42 +0.24 0.9 0.42 +0.26 0.9 0.42 +0.28 0.9 0.42 +0.3 0.9 0.42 +0.7 0.9 0.42 +0.72 0.9 0.42 +0.74 0.9 0.42 +0.76 0.9 0.42 +0.78 0.9 0.42 +0.26 0.92 0.42 +0.28 0.92 0.42 +0.3 0.92 0.42 +0.32 0.92 0.42 +0.34 0.92 0.42 +0.66 0.92 0.42 +0.68 0.92 0.42 +0.7 0.92 0.42 +0.72 0.92 0.42 +0.74 0.92 0.42 +0.28 0.94 0.42 +0.3 0.94 0.42 +0.32 0.94 0.42 +0.34 0.94 0.42 +0.36 0.94 0.42 +0.38 0.94 0.42 +0.4 0.94 0.42 +0.42 0.94 0.42 +0.44 0.94 0.42 +0.56 0.94 0.42 +0.58 0.94 0.42 +0.6 0.94 0.42 +0.62 0.94 0.42 +0.64 0.94 0.42 +0.66 0.94 0.42 +0.68 0.94 0.42 +0.7 0.94 0.42 +0.72 0.94 0.42 +0.34 0.96 0.42 +0.36 0.96 0.42 +0.38 0.96 0.42 +0.4 0.96 0.42 +0.42 0.96 0.42 +0.44 0.96 0.42 +0.46 0.96 0.42 +0.48 0.96 0.42 +0.5 0.96 0.42 +0.52 0.96 0.42 +0.54 0.96 0.42 +0.56 0.96 0.42 +0.58 0.96 0.42 +0.6 0.96 0.42 +0.62 0.96 0.42 +0.64 0.96 0.42 +0.66 0.96 0.42 +0.4 0.98 0.42 +0.42 0.98 0.42 +0.44 0.98 0.42 +0.46 0.98 0.42 +0.48 0.98 0.42 +0.5 0.98 0.42 +0.52 0.98 0.42 +0.54 0.98 0.42 +0.56 0.98 0.42 +0.58 0.98 0.42 +0.6 0.98 0.42 +0.38 0.02 0.44 +0.4 0.02 0.44 +0.42 0.02 0.44 +0.44 0.02 0.44 +0.46 0.02 0.44 +0.48 0.02 0.44 +0.5 0.02 0.44 +0.52 0.02 0.44 +0.54 0.02 0.44 +0.56 0.02 0.44 +0.58 0.02 0.44 +0.6 0.02 0.44 +0.62 0.02 0.44 +0.32 0.04 0.44 +0.34 0.04 0.44 +0.36 0.04 0.44 +0.38 0.04 0.44 +0.4 0.04 0.44 +0.42 0.04 0.44 +0.44 0.04 0.44 +0.46 0.04 0.44 +0.48 0.04 0.44 +0.5 0.04 0.44 +0.52 0.04 0.44 +0.54 0.04 0.44 +0.56 0.04 0.44 +0.58 0.04 0.44 +0.6 0.04 0.44 +0.62 0.04 0.44 +0.64 0.04 0.44 +0.66 0.04 0.44 +0.68 0.04 0.44 +0.28 0.06 0.44 +0.3 0.06 0.44 +0.32 0.06 0.44 +0.34 0.06 0.44 +0.36 0.06 0.44 +0.38 0.06 0.44 +0.4 0.06 0.44 +0.42 0.06 0.44 +0.58 0.06 0.44 +0.6 0.06 0.44 +0.62 0.06 0.44 +0.64 0.06 0.44 +0.66 0.06 0.44 +0.68 0.06 0.44 +0.7 0.06 0.44 +0.72 0.06 0.44 +0.24 0.08 0.44 +0.26 0.08 0.44 +0.28 0.08 0.44 +0.3 0.08 0.44 +0.32 0.08 0.44 +0.34 0.08 0.44 +0.66 0.08 0.44 +0.68 0.08 0.44 +0.7 0.08 0.44 +0.72 0.08 0.44 +0.74 0.08 0.44 +0.76 0.08 0.44 +0.22 0.1 0.44 +0.24 0.1 0.44 +0.26 0.1 0.44 +0.28 0.1 0.44 +0.3 0.1 0.44 +0.7 0.1 0.44 +0.72 0.1 0.44 +0.74 0.1 0.44 +0.76 0.1 0.44 +0.78 0.1 0.44 +0.2 0.12 0.44 +0.22 0.12 0.44 +0.24 0.12 0.44 +0.26 0.12 0.44 +0.74 0.12 0.44 +0.76 0.12 0.44 +0.78 0.12 0.44 +0.8 0.12 0.44 +0.16 0.14 0.44 +0.18 0.14 0.44 +0.2 0.14 0.44 +0.22 0.14 0.44 +0.78 0.14 0.44 +0.8 0.14 0.44 +0.82 0.14 0.44 +0.84 0.14 0.44 +0.14 0.16 0.44 +0.16 0.16 0.44 +0.18 0.16 0.44 +0.2 0.16 0.44 +0.8 0.16 0.44 +0.82 0.16 0.44 +0.84 0.16 0.44 +0.86 0.16 0.44 +0.14 0.18 0.44 +0.16 0.18 0.44 +0.18 0.18 0.44 +0.82 0.18 0.44 +0.84 0.18 0.44 +0.86 0.18 0.44 +0.12 0.2 0.44 +0.14 0.2 0.44 +0.16 0.2 0.44 +0.84 0.2 0.44 +0.86 0.2 0.44 +0.88 0.2 0.44 +0.1 0.22 0.44 +0.12 0.22 0.44 +0.14 0.22 0.44 +0.86 0.22 0.44 +0.88 0.22 0.44 +0.9 0.22 0.44 +0.08 0.24 0.44 +0.1 0.24 0.44 +0.12 0.24 0.44 +0.88 0.24 0.44 +0.9 0.24 0.44 +0.92 0.24 0.44 +0.08 0.26 0.44 +0.1 0.26 0.44 +0.12 0.26 0.44 +0.88 0.26 0.44 +0.9 0.26 0.44 +0.92 0.26 0.44 +0.06 0.28 0.44 +0.08 0.28 0.44 +0.1 0.28 0.44 +0.9 0.28 0.44 +0.92 0.28 0.44 +0.94 0.28 0.44 +0.06 0.3 0.44 +0.08 0.3 0.44 +0.1 0.3 0.44 +0.9 0.3 0.44 +0.92 0.3 0.44 +0.94 0.3 0.44 +0.04 0.32 0.44 +0.06 0.32 0.44 +0.08 0.32 0.44 +0.92 0.32 0.44 +0.94 0.32 0.44 +0.96 0.32 0.44 +0.04 0.34 0.44 +0.06 0.34 0.44 +0.08 0.34 0.44 +0.92 0.34 0.44 +0.94 0.34 0.44 +0.96 0.34 0.44 +0.04 0.36 0.44 +0.06 0.36 0.44 +0.94 0.36 0.44 +0.96 0.36 0.44 +0.02 0.38 0.44 +0.04 0.38 0.44 +0.06 0.38 0.44 +0.94 0.38 0.44 +0.96 0.38 0.44 +0.98 0.38 0.44 +0.02 0.4 0.44 +0.04 0.4 0.44 +0.06 0.4 0.44 +0.94 0.4 0.44 +0.96 0.4 0.44 +0.98 0.4 0.44 +0.02 0.42 0.44 +0.04 0.42 0.44 +0.06 0.42 0.44 +0.94 0.42 0.44 +0.96 0.42 0.44 +0.98 0.42 0.44 +0.02 0.44 0.44 +0.04 0.44 0.44 +0.96 0.44 0.44 +0.98 0.44 0.44 +0.02 0.46 0.44 +0.04 0.46 0.44 +0.96 0.46 0.44 +0.98 0.46 0.44 +0.02 0.48 0.44 +0.04 0.48 0.44 +0.96 0.48 0.44 +0.98 0.48 0.44 +0.02 0.5 0.44 +0.04 0.5 0.44 +0.96 0.5 0.44 +0.98 0.5 0.44 +0.02 0.52 0.44 +0.04 0.52 0.44 +0.96 0.52 0.44 +0.98 0.52 0.44 +0.02 0.54 0.44 +0.04 0.54 0.44 +0.96 0.54 0.44 +0.98 0.54 0.44 +0.02 0.56 0.44 +0.04 0.56 0.44 +0.96 0.56 0.44 +0.98 0.56 0.44 +0.02 0.58 0.44 +0.04 0.58 0.44 +0.06 0.58 0.44 +0.94 0.58 0.44 +0.96 0.58 0.44 +0.98 0.58 0.44 +0.02 0.6 0.44 +0.04 0.6 0.44 +0.06 0.6 0.44 +0.94 0.6 0.44 +0.96 0.6 0.44 +0.98 0.6 0.44 +0.02 0.62 0.44 +0.04 0.62 0.44 +0.06 0.62 0.44 +0.94 0.62 0.44 +0.96 0.62 0.44 +0.98 0.62 0.44 +0.04 0.64 0.44 +0.06 0.64 0.44 +0.94 0.64 0.44 +0.96 0.64 0.44 +0.04 0.66 0.44 +0.06 0.66 0.44 +0.08 0.66 0.44 +0.92 0.66 0.44 +0.94 0.66 0.44 +0.96 0.66 0.44 +0.04 0.68 0.44 +0.06 0.68 0.44 +0.08 0.68 0.44 +0.92 0.68 0.44 +0.94 0.68 0.44 +0.96 0.68 0.44 +0.06 0.7 0.44 +0.08 0.7 0.44 +0.1 0.7 0.44 +0.9 0.7 0.44 +0.92 0.7 0.44 +0.94 0.7 0.44 +0.06 0.72 0.44 +0.08 0.72 0.44 +0.1 0.72 0.44 +0.9 0.72 0.44 +0.92 0.72 0.44 +0.94 0.72 0.44 +0.08 0.74 0.44 +0.1 0.74 0.44 +0.12 0.74 0.44 +0.88 0.74 0.44 +0.9 0.74 0.44 +0.92 0.74 0.44 +0.08 0.76 0.44 +0.1 0.76 0.44 +0.12 0.76 0.44 +0.88 0.76 0.44 +0.9 0.76 0.44 +0.92 0.76 0.44 +0.1 0.78 0.44 +0.12 0.78 0.44 +0.14 0.78 0.44 +0.86 0.78 0.44 +0.88 0.78 0.44 +0.9 0.78 0.44 +0.12 0.8 0.44 +0.14 0.8 0.44 +0.16 0.8 0.44 +0.84 0.8 0.44 +0.86 0.8 0.44 +0.88 0.8 0.44 +0.14 0.82 0.44 +0.16 0.82 0.44 +0.18 0.82 0.44 +0.82 0.82 0.44 +0.84 0.82 0.44 +0.86 0.82 0.44 +0.14 0.84 0.44 +0.16 0.84 0.44 +0.18 0.84 0.44 +0.2 0.84 0.44 +0.8 0.84 0.44 +0.82 0.84 0.44 +0.84 0.84 0.44 +0.86 0.84 0.44 +0.16 0.86 0.44 +0.18 0.86 0.44 +0.2 0.86 0.44 +0.22 0.86 0.44 +0.78 0.86 0.44 +0.8 0.86 0.44 +0.82 0.86 0.44 +0.84 0.86 0.44 +0.2 0.88 0.44 +0.22 0.88 0.44 +0.24 0.88 0.44 +0.26 0.88 0.44 +0.74 0.88 0.44 +0.76 0.88 0.44 +0.78 0.88 0.44 +0.8 0.88 0.44 +0.22 0.9 0.44 +0.24 0.9 0.44 +0.26 0.9 0.44 +0.28 0.9 0.44 +0.3 0.9 0.44 +0.7 0.9 0.44 +0.72 0.9 0.44 +0.74 0.9 0.44 +0.76 0.9 0.44 +0.78 0.9 0.44 +0.24 0.92 0.44 +0.26 0.92 0.44 +0.28 0.92 0.44 +0.3 0.92 0.44 +0.32 0.92 0.44 +0.34 0.92 0.44 +0.66 0.92 0.44 +0.68 0.92 0.44 +0.7 0.92 0.44 +0.72 0.92 0.44 +0.74 0.92 0.44 +0.76 0.92 0.44 +0.28 0.94 0.44 +0.3 0.94 0.44 +0.32 0.94 0.44 +0.34 0.94 0.44 +0.36 0.94 0.44 +0.38 0.94 0.44 +0.4 0.94 0.44 +0.42 0.94 0.44 +0.58 0.94 0.44 +0.6 0.94 0.44 +0.62 0.94 0.44 +0.64 0.94 0.44 +0.66 0.94 0.44 +0.68 0.94 0.44 +0.7 0.94 0.44 +0.72 0.94 0.44 +0.32 0.96 0.44 +0.34 0.96 0.44 +0.36 0.96 0.44 +0.38 0.96 0.44 +0.4 0.96 0.44 +0.42 0.96 0.44 +0.44 0.96 0.44 +0.46 0.96 0.44 +0.48 0.96 0.44 +0.5 0.96 0.44 +0.52 0.96 0.44 +0.54 0.96 0.44 +0.56 0.96 0.44 +0.58 0.96 0.44 +0.6 0.96 0.44 +0.62 0.96 0.44 +0.64 0.96 0.44 +0.66 0.96 0.44 +0.68 0.96 0.44 +0.38 0.98 0.44 +0.4 0.98 0.44 +0.42 0.98 0.44 +0.44 0.98 0.44 +0.46 0.98 0.44 +0.48 0.98 0.44 +0.5 0.98 0.44 +0.52 0.98 0.44 +0.54 0.98 0.44 +0.56 0.98 0.44 +0.58 0.98 0.44 +0.6 0.98 0.44 +0.62 0.98 0.44 +0.38 0.02 0.46 +0.4 0.02 0.46 +0.42 0.02 0.46 +0.44 0.02 0.46 +0.46 0.02 0.46 +0.48 0.02 0.46 +0.5 0.02 0.46 +0.52 0.02 0.46 +0.54 0.02 0.46 +0.56 0.02 0.46 +0.58 0.02 0.46 +0.6 0.02 0.46 +0.62 0.02 0.46 +0.32 0.04 0.46 +0.34 0.04 0.46 +0.36 0.04 0.46 +0.38 0.04 0.46 +0.4 0.04 0.46 +0.42 0.04 0.46 +0.44 0.04 0.46 +0.46 0.04 0.46 +0.48 0.04 0.46 +0.5 0.04 0.46 +0.52 0.04 0.46 +0.54 0.04 0.46 +0.56 0.04 0.46 +0.58 0.04 0.46 +0.6 0.04 0.46 +0.62 0.04 0.46 +0.64 0.04 0.46 +0.66 0.04 0.46 +0.68 0.04 0.46 +0.28 0.06 0.46 +0.3 0.06 0.46 +0.32 0.06 0.46 +0.34 0.06 0.46 +0.36 0.06 0.46 +0.38 0.06 0.46 +0.4 0.06 0.46 +0.6 0.06 0.46 +0.62 0.06 0.46 +0.64 0.06 0.46 +0.66 0.06 0.46 +0.68 0.06 0.46 +0.7 0.06 0.46 +0.72 0.06 0.46 +0.24 0.08 0.46 +0.26 0.08 0.46 +0.28 0.08 0.46 +0.3 0.08 0.46 +0.32 0.08 0.46 +0.34 0.08 0.46 +0.66 0.08 0.46 +0.68 0.08 0.46 +0.7 0.08 0.46 +0.72 0.08 0.46 +0.74 0.08 0.46 +0.76 0.08 0.46 +0.22 0.1 0.46 +0.24 0.1 0.46 +0.26 0.1 0.46 +0.28 0.1 0.46 +0.72 0.1 0.46 +0.74 0.1 0.46 +0.76 0.1 0.46 +0.78 0.1 0.46 +0.18 0.12 0.46 +0.2 0.12 0.46 +0.22 0.12 0.46 +0.24 0.12 0.46 +0.26 0.12 0.46 +0.74 0.12 0.46 +0.76 0.12 0.46 +0.78 0.12 0.46 +0.8 0.12 0.46 +0.82 0.12 0.46 +0.16 0.14 0.46 +0.18 0.14 0.46 +0.2 0.14 0.46 +0.22 0.14 0.46 +0.78 0.14 0.46 +0.8 0.14 0.46 +0.82 0.14 0.46 +0.84 0.14 0.46 +0.14 0.16 0.46 +0.16 0.16 0.46 +0.18 0.16 0.46 +0.2 0.16 0.46 +0.8 0.16 0.46 +0.82 0.16 0.46 +0.84 0.16 0.46 +0.86 0.16 0.46 +0.12 0.18 0.46 +0.14 0.18 0.46 +0.16 0.18 0.46 +0.18 0.18 0.46 +0.82 0.18 0.46 +0.84 0.18 0.46 +0.86 0.18 0.46 +0.88 0.18 0.46 +0.12 0.2 0.46 +0.14 0.2 0.46 +0.16 0.2 0.46 +0.84 0.2 0.46 +0.86 0.2 0.46 +0.88 0.2 0.46 +0.1 0.22 0.46 +0.12 0.22 0.46 +0.14 0.22 0.46 +0.86 0.22 0.46 +0.88 0.22 0.46 +0.9 0.22 0.46 +0.08 0.24 0.46 +0.1 0.24 0.46 +0.12 0.24 0.46 +0.88 0.24 0.46 +0.9 0.24 0.46 +0.92 0.24 0.46 +0.08 0.26 0.46 +0.1 0.26 0.46 +0.12 0.26 0.46 +0.88 0.26 0.46 +0.9 0.26 0.46 +0.92 0.26 0.46 +0.06 0.28 0.46 +0.08 0.28 0.46 +0.1 0.28 0.46 +0.9 0.28 0.46 +0.92 0.28 0.46 +0.94 0.28 0.46 +0.06 0.3 0.46 +0.08 0.3 0.46 +0.92 0.3 0.46 +0.94 0.3 0.46 +0.04 0.32 0.46 +0.06 0.32 0.46 +0.08 0.32 0.46 +0.92 0.32 0.46 +0.94 0.32 0.46 +0.96 0.32 0.46 +0.04 0.34 0.46 +0.06 0.34 0.46 +0.08 0.34 0.46 +0.92 0.34 0.46 +0.94 0.34 0.46 +0.96 0.34 0.46 +0.04 0.36 0.46 +0.06 0.36 0.46 +0.94 0.36 0.46 +0.96 0.36 0.46 +0.02 0.38 0.46 +0.04 0.38 0.46 +0.06 0.38 0.46 +0.94 0.38 0.46 +0.96 0.38 0.46 +0.98 0.38 0.46 +0.02 0.4 0.46 +0.04 0.4 0.46 +0.06 0.4 0.46 +0.94 0.4 0.46 +0.96 0.4 0.46 +0.98 0.4 0.46 +0.02 0.42 0.46 +0.04 0.42 0.46 +0.96 0.42 0.46 +0.98 0.42 0.46 +0.02 0.44 0.46 +0.04 0.44 0.46 +0.96 0.44 0.46 +0.98 0.44 0.46 +0.02 0.46 0.46 +0.04 0.46 0.46 +0.96 0.46 0.46 +0.98 0.46 0.46 +0.02 0.48 0.46 +0.04 0.48 0.46 +0.96 0.48 0.46 +0.98 0.48 0.46 +0.02 0.5 0.46 +0.04 0.5 0.46 +0.96 0.5 0.46 +0.98 0.5 0.46 +0.02 0.52 0.46 +0.04 0.52 0.46 +0.96 0.52 0.46 +0.98 0.52 0.46 +0.02 0.54 0.46 +0.04 0.54 0.46 +0.96 0.54 0.46 +0.98 0.54 0.46 +0.02 0.56 0.46 +0.04 0.56 0.46 +0.96 0.56 0.46 +0.98 0.56 0.46 +0.02 0.58 0.46 +0.04 0.58 0.46 +0.96 0.58 0.46 +0.98 0.58 0.46 +0.02 0.6 0.46 +0.04 0.6 0.46 +0.06 0.6 0.46 +0.94 0.6 0.46 +0.96 0.6 0.46 +0.98 0.6 0.46 +0.02 0.62 0.46 +0.04 0.62 0.46 +0.06 0.62 0.46 +0.94 0.62 0.46 +0.96 0.62 0.46 +0.98 0.62 0.46 +0.04 0.64 0.46 +0.06 0.64 0.46 +0.94 0.64 0.46 +0.96 0.64 0.46 +0.04 0.66 0.46 +0.06 0.66 0.46 +0.08 0.66 0.46 +0.92 0.66 0.46 +0.94 0.66 0.46 +0.96 0.66 0.46 +0.04 0.68 0.46 +0.06 0.68 0.46 +0.08 0.68 0.46 +0.92 0.68 0.46 +0.94 0.68 0.46 +0.96 0.68 0.46 +0.06 0.7 0.46 +0.08 0.7 0.46 +0.92 0.7 0.46 +0.94 0.7 0.46 +0.06 0.72 0.46 +0.08 0.72 0.46 +0.1 0.72 0.46 +0.9 0.72 0.46 +0.92 0.72 0.46 +0.94 0.72 0.46 +0.08 0.74 0.46 +0.1 0.74 0.46 +0.12 0.74 0.46 +0.88 0.74 0.46 +0.9 0.74 0.46 +0.92 0.74 0.46 +0.08 0.76 0.46 +0.1 0.76 0.46 +0.12 0.76 0.46 +0.88 0.76 0.46 +0.9 0.76 0.46 +0.92 0.76 0.46 +0.1 0.78 0.46 +0.12 0.78 0.46 +0.14 0.78 0.46 +0.86 0.78 0.46 +0.88 0.78 0.46 +0.9 0.78 0.46 +0.12 0.8 0.46 +0.14 0.8 0.46 +0.16 0.8 0.46 +0.84 0.8 0.46 +0.86 0.8 0.46 +0.88 0.8 0.46 +0.12 0.82 0.46 +0.14 0.82 0.46 +0.16 0.82 0.46 +0.18 0.82 0.46 +0.82 0.82 0.46 +0.84 0.82 0.46 +0.86 0.82 0.46 +0.88 0.82 0.46 +0.14 0.84 0.46 +0.16 0.84 0.46 +0.18 0.84 0.46 +0.2 0.84 0.46 +0.8 0.84 0.46 +0.82 0.84 0.46 +0.84 0.84 0.46 +0.86 0.84 0.46 +0.16 0.86 0.46 +0.18 0.86 0.46 +0.2 0.86 0.46 +0.22 0.86 0.46 +0.78 0.86 0.46 +0.8 0.86 0.46 +0.82 0.86 0.46 +0.84 0.86 0.46 +0.18 0.88 0.46 +0.2 0.88 0.46 +0.22 0.88 0.46 +0.24 0.88 0.46 +0.26 0.88 0.46 +0.74 0.88 0.46 +0.76 0.88 0.46 +0.78 0.88 0.46 +0.8 0.88 0.46 +0.82 0.88 0.46 +0.22 0.9 0.46 +0.24 0.9 0.46 +0.26 0.9 0.46 +0.28 0.9 0.46 +0.72 0.9 0.46 +0.74 0.9 0.46 +0.76 0.9 0.46 +0.78 0.9 0.46 +0.24 0.92 0.46 +0.26 0.92 0.46 +0.28 0.92 0.46 +0.3 0.92 0.46 +0.32 0.92 0.46 +0.34 0.92 0.46 +0.66 0.92 0.46 +0.68 0.92 0.46 +0.7 0.92 0.46 +0.72 0.92 0.46 +0.74 0.92 0.46 +0.76 0.92 0.46 +0.28 0.94 0.46 +0.3 0.94 0.46 +0.32 0.94 0.46 +0.34 0.94 0.46 +0.36 0.94 0.46 +0.38 0.94 0.46 +0.4 0.94 0.46 +0.6 0.94 0.46 +0.62 0.94 0.46 +0.64 0.94 0.46 +0.66 0.94 0.46 +0.68 0.94 0.46 +0.7 0.94 0.46 +0.72 0.94 0.46 +0.32 0.96 0.46 +0.34 0.96 0.46 +0.36 0.96 0.46 +0.38 0.96 0.46 +0.4 0.96 0.46 +0.42 0.96 0.46 +0.44 0.96 0.46 +0.46 0.96 0.46 +0.48 0.96 0.46 +0.5 0.96 0.46 +0.52 0.96 0.46 +0.54 0.96 0.46 +0.56 0.96 0.46 +0.58 0.96 0.46 +0.6 0.96 0.46 +0.62 0.96 0.46 +0.64 0.96 0.46 +0.66 0.96 0.46 +0.68 0.96 0.46 +0.38 0.98 0.46 +0.4 0.98 0.46 +0.42 0.98 0.46 +0.44 0.98 0.46 +0.46 0.98 0.46 +0.48 0.98 0.46 +0.5 0.98 0.46 +0.52 0.98 0.46 +0.54 0.98 0.46 +0.56 0.98 0.46 +0.58 0.98 0.46 +0.6 0.98 0.46 +0.62 0.98 0.46 +0.38 0.02 0.48 +0.4 0.02 0.48 +0.42 0.02 0.48 +0.44 0.02 0.48 +0.46 0.02 0.48 +0.48 0.02 0.48 +0.5 0.02 0.48 +0.52 0.02 0.48 +0.54 0.02 0.48 +0.56 0.02 0.48 +0.58 0.02 0.48 +0.6 0.02 0.48 +0.62 0.02 0.48 +0.32 0.04 0.48 +0.34 0.04 0.48 +0.36 0.04 0.48 +0.38 0.04 0.48 +0.4 0.04 0.48 +0.42 0.04 0.48 +0.44 0.04 0.48 +0.46 0.04 0.48 +0.48 0.04 0.48 +0.5 0.04 0.48 +0.52 0.04 0.48 +0.54 0.04 0.48 +0.56 0.04 0.48 +0.58 0.04 0.48 +0.6 0.04 0.48 +0.62 0.04 0.48 +0.64 0.04 0.48 +0.66 0.04 0.48 +0.68 0.04 0.48 +0.28 0.06 0.48 +0.3 0.06 0.48 +0.32 0.06 0.48 +0.34 0.06 0.48 +0.36 0.06 0.48 +0.38 0.06 0.48 +0.4 0.06 0.48 +0.6 0.06 0.48 +0.62 0.06 0.48 +0.64 0.06 0.48 +0.66 0.06 0.48 +0.68 0.06 0.48 +0.7 0.06 0.48 +0.72 0.06 0.48 +0.24 0.08 0.48 +0.26 0.08 0.48 +0.28 0.08 0.48 +0.3 0.08 0.48 +0.32 0.08 0.48 +0.68 0.08 0.48 +0.7 0.08 0.48 +0.72 0.08 0.48 +0.74 0.08 0.48 +0.76 0.08 0.48 +0.22 0.1 0.48 +0.24 0.1 0.48 +0.26 0.1 0.48 +0.28 0.1 0.48 +0.72 0.1 0.48 +0.74 0.1 0.48 +0.76 0.1 0.48 +0.78 0.1 0.48 +0.18 0.12 0.48 +0.2 0.12 0.48 +0.22 0.12 0.48 +0.24 0.12 0.48 +0.76 0.12 0.48 +0.78 0.12 0.48 +0.8 0.12 0.48 +0.82 0.12 0.48 +0.16 0.14 0.48 +0.18 0.14 0.48 +0.2 0.14 0.48 +0.22 0.14 0.48 +0.78 0.14 0.48 +0.8 0.14 0.48 +0.82 0.14 0.48 +0.84 0.14 0.48 +0.14 0.16 0.48 +0.16 0.16 0.48 +0.18 0.16 0.48 +0.2 0.16 0.48 +0.8 0.16 0.48 +0.82 0.16 0.48 +0.84 0.16 0.48 +0.86 0.16 0.48 +0.12 0.18 0.48 +0.14 0.18 0.48 +0.16 0.18 0.48 +0.18 0.18 0.48 +0.82 0.18 0.48 +0.84 0.18 0.48 +0.86 0.18 0.48 +0.88 0.18 0.48 +0.12 0.2 0.48 +0.14 0.2 0.48 +0.16 0.2 0.48 +0.84 0.2 0.48 +0.86 0.2 0.48 +0.88 0.2 0.48 +0.1 0.22 0.48 +0.12 0.22 0.48 +0.14 0.22 0.48 +0.86 0.22 0.48 +0.88 0.22 0.48 +0.9 0.22 0.48 +0.08 0.24 0.48 +0.1 0.24 0.48 +0.12 0.24 0.48 +0.88 0.24 0.48 +0.9 0.24 0.48 +0.92 0.24 0.48 +0.08 0.26 0.48 +0.1 0.26 0.48 +0.9 0.26 0.48 +0.92 0.26 0.48 +0.06 0.28 0.48 +0.08 0.28 0.48 +0.1 0.28 0.48 +0.9 0.28 0.48 +0.92 0.28 0.48 +0.94 0.28 0.48 +0.06 0.3 0.48 +0.08 0.3 0.48 +0.92 0.3 0.48 +0.94 0.3 0.48 +0.04 0.32 0.48 +0.06 0.32 0.48 +0.08 0.32 0.48 +0.92 0.32 0.48 +0.94 0.32 0.48 +0.96 0.32 0.48 +0.04 0.34 0.48 +0.06 0.34 0.48 +0.94 0.34 0.48 +0.96 0.34 0.48 +0.04 0.36 0.48 +0.06 0.36 0.48 +0.94 0.36 0.48 +0.96 0.36 0.48 +0.02 0.38 0.48 +0.04 0.38 0.48 +0.06 0.38 0.48 +0.94 0.38 0.48 +0.96 0.38 0.48 +0.98 0.38 0.48 +0.02 0.4 0.48 +0.04 0.4 0.48 +0.06 0.4 0.48 +0.94 0.4 0.48 +0.96 0.4 0.48 +0.98 0.4 0.48 +0.02 0.42 0.48 +0.04 0.42 0.48 +0.96 0.42 0.48 +0.98 0.42 0.48 +0.02 0.44 0.48 +0.04 0.44 0.48 +0.96 0.44 0.48 +0.98 0.44 0.48 +0.02 0.46 0.48 +0.04 0.46 0.48 +0.96 0.46 0.48 +0.98 0.46 0.48 +0.02 0.48 0.48 +0.04 0.48 0.48 +0.96 0.48 0.48 +0.98 0.48 0.48 +0.02 0.5 0.48 +0.04 0.5 0.48 +0.96 0.5 0.48 +0.98 0.5 0.48 +0.02 0.52 0.48 +0.04 0.52 0.48 +0.96 0.52 0.48 +0.98 0.52 0.48 +0.02 0.54 0.48 +0.04 0.54 0.48 +0.96 0.54 0.48 +0.98 0.54 0.48 +0.02 0.56 0.48 +0.04 0.56 0.48 +0.96 0.56 0.48 +0.98 0.56 0.48 +0.02 0.58 0.48 +0.04 0.58 0.48 +0.96 0.58 0.48 +0.98 0.58 0.48 +0.02 0.6 0.48 +0.04 0.6 0.48 +0.06 0.6 0.48 +0.94 0.6 0.48 +0.96 0.6 0.48 +0.98 0.6 0.48 +0.02 0.62 0.48 +0.04 0.62 0.48 +0.06 0.62 0.48 +0.94 0.62 0.48 +0.96 0.62 0.48 +0.98 0.62 0.48 +0.04 0.64 0.48 +0.06 0.64 0.48 +0.94 0.64 0.48 +0.96 0.64 0.48 +0.04 0.66 0.48 +0.06 0.66 0.48 +0.94 0.66 0.48 +0.96 0.66 0.48 +0.04 0.68 0.48 +0.06 0.68 0.48 +0.08 0.68 0.48 +0.92 0.68 0.48 +0.94 0.68 0.48 +0.96 0.68 0.48 +0.06 0.7 0.48 +0.08 0.7 0.48 +0.92 0.7 0.48 +0.94 0.7 0.48 +0.06 0.72 0.48 +0.08 0.72 0.48 +0.1 0.72 0.48 +0.9 0.72 0.48 +0.92 0.72 0.48 +0.94 0.72 0.48 +0.08 0.74 0.48 +0.1 0.74 0.48 +0.9 0.74 0.48 +0.92 0.74 0.48 +0.08 0.76 0.48 +0.1 0.76 0.48 +0.12 0.76 0.48 +0.88 0.76 0.48 +0.9 0.76 0.48 +0.92 0.76 0.48 +0.1 0.78 0.48 +0.12 0.78 0.48 +0.14 0.78 0.48 +0.86 0.78 0.48 +0.88 0.78 0.48 +0.9 0.78 0.48 +0.12 0.8 0.48 +0.14 0.8 0.48 +0.16 0.8 0.48 +0.84 0.8 0.48 +0.86 0.8 0.48 +0.88 0.8 0.48 +0.12 0.82 0.48 +0.14 0.82 0.48 +0.16 0.82 0.48 +0.18 0.82 0.48 +0.82 0.82 0.48 +0.84 0.82 0.48 +0.86 0.82 0.48 +0.88 0.82 0.48 +0.14 0.84 0.48 +0.16 0.84 0.48 +0.18 0.84 0.48 +0.2 0.84 0.48 +0.8 0.84 0.48 +0.82 0.84 0.48 +0.84 0.84 0.48 +0.86 0.84 0.48 +0.16 0.86 0.48 +0.18 0.86 0.48 +0.2 0.86 0.48 +0.22 0.86 0.48 +0.78 0.86 0.48 +0.8 0.86 0.48 +0.82 0.86 0.48 +0.84 0.86 0.48 +0.18 0.88 0.48 +0.2 0.88 0.48 +0.22 0.88 0.48 +0.24 0.88 0.48 +0.76 0.88 0.48 +0.78 0.88 0.48 +0.8 0.88 0.48 +0.82 0.88 0.48 +0.22 0.9 0.48 +0.24 0.9 0.48 +0.26 0.9 0.48 +0.28 0.9 0.48 +0.72 0.9 0.48 +0.74 0.9 0.48 +0.76 0.9 0.48 +0.78 0.9 0.48 +0.24 0.92 0.48 +0.26 0.92 0.48 +0.28 0.92 0.48 +0.3 0.92 0.48 +0.32 0.92 0.48 +0.68 0.92 0.48 +0.7 0.92 0.48 +0.72 0.92 0.48 +0.74 0.92 0.48 +0.76 0.92 0.48 +0.28 0.94 0.48 +0.3 0.94 0.48 +0.32 0.94 0.48 +0.34 0.94 0.48 +0.36 0.94 0.48 +0.38 0.94 0.48 +0.4 0.94 0.48 +0.6 0.94 0.48 +0.62 0.94 0.48 +0.64 0.94 0.48 +0.66 0.94 0.48 +0.68 0.94 0.48 +0.7 0.94 0.48 +0.72 0.94 0.48 +0.32 0.96 0.48 +0.34 0.96 0.48 +0.36 0.96 0.48 +0.38 0.96 0.48 +0.4 0.96 0.48 +0.42 0.96 0.48 +0.44 0.96 0.48 +0.46 0.96 0.48 +0.48 0.96 0.48 +0.5 0.96 0.48 +0.52 0.96 0.48 +0.54 0.96 0.48 +0.56 0.96 0.48 +0.58 0.96 0.48 +0.6 0.96 0.48 +0.62 0.96 0.48 +0.64 0.96 0.48 +0.66 0.96 0.48 +0.68 0.96 0.48 +0.38 0.98 0.48 +0.4 0.98 0.48 +0.42 0.98 0.48 +0.44 0.98 0.48 +0.46 0.98 0.48 +0.48 0.98 0.48 +0.5 0.98 0.48 +0.52 0.98 0.48 +0.54 0.98 0.48 +0.56 0.98 0.48 +0.58 0.98 0.48 +0.6 0.98 0.48 +0.62 0.98 0.48 +0.38 0.02 0.5 +0.4 0.02 0.5 +0.42 0.02 0.5 +0.44 0.02 0.5 +0.46 0.02 0.5 +0.48 0.02 0.5 +0.5 0.02 0.5 +0.52 0.02 0.5 +0.54 0.02 0.5 +0.56 0.02 0.5 +0.58 0.02 0.5 +0.6 0.02 0.5 +0.62 0.02 0.5 +0.32 0.04 0.5 +0.34 0.04 0.5 +0.36 0.04 0.5 +0.38 0.04 0.5 +0.4 0.04 0.5 +0.42 0.04 0.5 +0.44 0.04 0.5 +0.46 0.04 0.5 +0.48 0.04 0.5 +0.5 0.04 0.5 +0.52 0.04 0.5 +0.54 0.04 0.5 +0.56 0.04 0.5 +0.58 0.04 0.5 +0.6 0.04 0.5 +0.62 0.04 0.5 +0.64 0.04 0.5 +0.66 0.04 0.5 +0.68 0.04 0.5 +0.28 0.06 0.5 +0.3 0.06 0.5 +0.32 0.06 0.5 +0.34 0.06 0.5 +0.36 0.06 0.5 +0.38 0.06 0.5 +0.4 0.06 0.5 +0.6 0.06 0.5 +0.62 0.06 0.5 +0.64 0.06 0.5 +0.66 0.06 0.5 +0.68 0.06 0.5 +0.7 0.06 0.5 +0.72 0.06 0.5 +0.24 0.08 0.5 +0.26 0.08 0.5 +0.28 0.08 0.5 +0.3 0.08 0.5 +0.32 0.08 0.5 +0.68 0.08 0.5 +0.7 0.08 0.5 +0.72 0.08 0.5 +0.74 0.08 0.5 +0.76 0.08 0.5 +0.22 0.1 0.5 +0.24 0.1 0.5 +0.26 0.1 0.5 +0.28 0.1 0.5 +0.72 0.1 0.5 +0.74 0.1 0.5 +0.76 0.1 0.5 +0.78 0.1 0.5 +0.18 0.12 0.5 +0.2 0.12 0.5 +0.22 0.12 0.5 +0.24 0.12 0.5 +0.76 0.12 0.5 +0.78 0.12 0.5 +0.8 0.12 0.5 +0.82 0.12 0.5 +0.16 0.14 0.5 +0.18 0.14 0.5 +0.2 0.14 0.5 +0.22 0.14 0.5 +0.78 0.14 0.5 +0.8 0.14 0.5 +0.82 0.14 0.5 +0.84 0.14 0.5 +0.14 0.16 0.5 +0.16 0.16 0.5 +0.18 0.16 0.5 +0.2 0.16 0.5 +0.8 0.16 0.5 +0.82 0.16 0.5 +0.84 0.16 0.5 +0.86 0.16 0.5 +0.12 0.18 0.5 +0.14 0.18 0.5 +0.16 0.18 0.5 +0.18 0.18 0.5 +0.82 0.18 0.5 +0.84 0.18 0.5 +0.86 0.18 0.5 +0.88 0.18 0.5 +0.12 0.2 0.5 +0.14 0.2 0.5 +0.16 0.2 0.5 +0.84 0.2 0.5 +0.86 0.2 0.5 +0.88 0.2 0.5 +0.1 0.22 0.5 +0.12 0.22 0.5 +0.14 0.22 0.5 +0.86 0.22 0.5 +0.88 0.22 0.5 +0.9 0.22 0.5 +0.08 0.24 0.5 +0.1 0.24 0.5 +0.12 0.24 0.5 +0.88 0.24 0.5 +0.9 0.24 0.5 +0.92 0.24 0.5 +0.08 0.26 0.5 +0.1 0.26 0.5 +0.9 0.26 0.5 +0.92 0.26 0.5 +0.06 0.28 0.5 +0.08 0.28 0.5 +0.1 0.28 0.5 +0.9 0.28 0.5 +0.92 0.28 0.5 +0.94 0.28 0.5 +0.06 0.3 0.5 +0.08 0.3 0.5 +0.92 0.3 0.5 +0.94 0.3 0.5 +0.04 0.32 0.5 +0.06 0.32 0.5 +0.08 0.32 0.5 +0.92 0.32 0.5 +0.94 0.32 0.5 +0.96 0.32 0.5 +0.04 0.34 0.5 +0.06 0.34 0.5 +0.94 0.34 0.5 +0.96 0.34 0.5 +0.04 0.36 0.5 +0.06 0.36 0.5 +0.94 0.36 0.5 +0.96 0.36 0.5 +0.02 0.38 0.5 +0.04 0.38 0.5 +0.06 0.38 0.5 +0.94 0.38 0.5 +0.96 0.38 0.5 +0.98 0.38 0.5 +0.02 0.4 0.5 +0.04 0.4 0.5 +0.06 0.4 0.5 +0.94 0.4 0.5 +0.96 0.4 0.5 +0.98 0.4 0.5 +0.02 0.42 0.5 +0.04 0.42 0.5 +0.96 0.42 0.5 +0.98 0.42 0.5 +0.02 0.44 0.5 +0.04 0.44 0.5 +0.96 0.44 0.5 +0.98 0.44 0.5 +0.02 0.46 0.5 +0.04 0.46 0.5 +0.96 0.46 0.5 +0.98 0.46 0.5 +0.02 0.48 0.5 +0.04 0.48 0.5 +0.96 0.48 0.5 +0.98 0.48 0.5 +0.02 0.5 0.5 +0.04 0.5 0.5 +0.96 0.5 0.5 +0.98 0.5 0.5 +0.02 0.52 0.5 +0.04 0.52 0.5 +0.96 0.52 0.5 +0.98 0.52 0.5 +0.02 0.54 0.5 +0.04 0.54 0.5 +0.96 0.54 0.5 +0.98 0.54 0.5 +0.02 0.56 0.5 +0.04 0.56 0.5 +0.96 0.56 0.5 +0.98 0.56 0.5 +0.02 0.58 0.5 +0.04 0.58 0.5 +0.96 0.58 0.5 +0.98 0.58 0.5 +0.02 0.6 0.5 +0.04 0.6 0.5 +0.06 0.6 0.5 +0.94 0.6 0.5 +0.96 0.6 0.5 +0.98 0.6 0.5 +0.02 0.62 0.5 +0.04 0.62 0.5 +0.06 0.62 0.5 +0.94 0.62 0.5 +0.96 0.62 0.5 +0.98 0.62 0.5 +0.04 0.64 0.5 +0.06 0.64 0.5 +0.94 0.64 0.5 +0.96 0.64 0.5 +0.04 0.66 0.5 +0.06 0.66 0.5 +0.94 0.66 0.5 +0.96 0.66 0.5 +0.04 0.68 0.5 +0.06 0.68 0.5 +0.08 0.68 0.5 +0.92 0.68 0.5 +0.94 0.68 0.5 +0.96 0.68 0.5 +0.06 0.7 0.5 +0.08 0.7 0.5 +0.92 0.7 0.5 +0.94 0.7 0.5 +0.06 0.72 0.5 +0.08 0.72 0.5 +0.1 0.72 0.5 +0.9 0.72 0.5 +0.92 0.72 0.5 +0.94 0.72 0.5 +0.08 0.74 0.5 +0.1 0.74 0.5 +0.9 0.74 0.5 +0.92 0.74 0.5 +0.08 0.76 0.5 +0.1 0.76 0.5 +0.12 0.76 0.5 +0.88 0.76 0.5 +0.9 0.76 0.5 +0.92 0.76 0.5 +0.1 0.78 0.5 +0.12 0.78 0.5 +0.14 0.78 0.5 +0.86 0.78 0.5 +0.88 0.78 0.5 +0.9 0.78 0.5 +0.12 0.8 0.5 +0.14 0.8 0.5 +0.16 0.8 0.5 +0.84 0.8 0.5 +0.86 0.8 0.5 +0.88 0.8 0.5 +0.12 0.82 0.5 +0.14 0.82 0.5 +0.16 0.82 0.5 +0.18 0.82 0.5 +0.82 0.82 0.5 +0.84 0.82 0.5 +0.86 0.82 0.5 +0.88 0.82 0.5 +0.14 0.84 0.5 +0.16 0.84 0.5 +0.18 0.84 0.5 +0.2 0.84 0.5 +0.8 0.84 0.5 +0.82 0.84 0.5 +0.84 0.84 0.5 +0.86 0.84 0.5 +0.16 0.86 0.5 +0.18 0.86 0.5 +0.2 0.86 0.5 +0.22 0.86 0.5 +0.78 0.86 0.5 +0.8 0.86 0.5 +0.82 0.86 0.5 +0.84 0.86 0.5 +0.18 0.88 0.5 +0.2 0.88 0.5 +0.22 0.88 0.5 +0.24 0.88 0.5 +0.76 0.88 0.5 +0.78 0.88 0.5 +0.8 0.88 0.5 +0.82 0.88 0.5 +0.22 0.9 0.5 +0.24 0.9 0.5 +0.26 0.9 0.5 +0.28 0.9 0.5 +0.72 0.9 0.5 +0.74 0.9 0.5 +0.76 0.9 0.5 +0.78 0.9 0.5 +0.24 0.92 0.5 +0.26 0.92 0.5 +0.28 0.92 0.5 +0.3 0.92 0.5 +0.32 0.92 0.5 +0.68 0.92 0.5 +0.7 0.92 0.5 +0.72 0.92 0.5 +0.74 0.92 0.5 +0.76 0.92 0.5 +0.28 0.94 0.5 +0.3 0.94 0.5 +0.32 0.94 0.5 +0.34 0.94 0.5 +0.36 0.94 0.5 +0.38 0.94 0.5 +0.4 0.94 0.5 +0.6 0.94 0.5 +0.62 0.94 0.5 +0.64 0.94 0.5 +0.66 0.94 0.5 +0.68 0.94 0.5 +0.7 0.94 0.5 +0.72 0.94 0.5 +0.32 0.96 0.5 +0.34 0.96 0.5 +0.36 0.96 0.5 +0.38 0.96 0.5 +0.4 0.96 0.5 +0.42 0.96 0.5 +0.44 0.96 0.5 +0.46 0.96 0.5 +0.48 0.96 0.5 +0.5 0.96 0.5 +0.52 0.96 0.5 +0.54 0.96 0.5 +0.56 0.96 0.5 +0.58 0.96 0.5 +0.6 0.96 0.5 +0.62 0.96 0.5 +0.64 0.96 0.5 +0.66 0.96 0.5 +0.68 0.96 0.5 +0.38 0.98 0.5 +0.4 0.98 0.5 +0.42 0.98 0.5 +0.44 0.98 0.5 +0.46 0.98 0.5 +0.48 0.98 0.5 +0.5 0.98 0.5 +0.52 0.98 0.5 +0.54 0.98 0.5 +0.56 0.98 0.5 +0.58 0.98 0.5 +0.6 0.98 0.5 +0.62 0.98 0.5 +0.38 0.02 0.52 +0.4 0.02 0.52 +0.42 0.02 0.52 +0.44 0.02 0.52 +0.46 0.02 0.52 +0.48 0.02 0.52 +0.5 0.02 0.52 +0.52 0.02 0.52 +0.54 0.02 0.52 +0.56 0.02 0.52 +0.58 0.02 0.52 +0.6 0.02 0.52 +0.62 0.02 0.52 +0.32 0.04 0.52 +0.34 0.04 0.52 +0.36 0.04 0.52 +0.38 0.04 0.52 +0.4 0.04 0.52 +0.42 0.04 0.52 +0.44 0.04 0.52 +0.46 0.04 0.52 +0.48 0.04 0.52 +0.5 0.04 0.52 +0.52 0.04 0.52 +0.54 0.04 0.52 +0.56 0.04 0.52 +0.58 0.04 0.52 +0.6 0.04 0.52 +0.62 0.04 0.52 +0.64 0.04 0.52 +0.66 0.04 0.52 +0.68 0.04 0.52 +0.28 0.06 0.52 +0.3 0.06 0.52 +0.32 0.06 0.52 +0.34 0.06 0.52 +0.36 0.06 0.52 +0.38 0.06 0.52 +0.4 0.06 0.52 +0.6 0.06 0.52 +0.62 0.06 0.52 +0.64 0.06 0.52 +0.66 0.06 0.52 +0.68 0.06 0.52 +0.7 0.06 0.52 +0.72 0.06 0.52 +0.24 0.08 0.52 +0.26 0.08 0.52 +0.28 0.08 0.52 +0.3 0.08 0.52 +0.32 0.08 0.52 +0.68 0.08 0.52 +0.7 0.08 0.52 +0.72 0.08 0.52 +0.74 0.08 0.52 +0.76 0.08 0.52 +0.22 0.1 0.52 +0.24 0.1 0.52 +0.26 0.1 0.52 +0.28 0.1 0.52 +0.72 0.1 0.52 +0.74 0.1 0.52 +0.76 0.1 0.52 +0.78 0.1 0.52 +0.18 0.12 0.52 +0.2 0.12 0.52 +0.22 0.12 0.52 +0.24 0.12 0.52 +0.76 0.12 0.52 +0.78 0.12 0.52 +0.8 0.12 0.52 +0.82 0.12 0.52 +0.16 0.14 0.52 +0.18 0.14 0.52 +0.2 0.14 0.52 +0.22 0.14 0.52 +0.78 0.14 0.52 +0.8 0.14 0.52 +0.82 0.14 0.52 +0.84 0.14 0.52 +0.14 0.16 0.52 +0.16 0.16 0.52 +0.18 0.16 0.52 +0.2 0.16 0.52 +0.8 0.16 0.52 +0.82 0.16 0.52 +0.84 0.16 0.52 +0.86 0.16 0.52 +0.12 0.18 0.52 +0.14 0.18 0.52 +0.16 0.18 0.52 +0.18 0.18 0.52 +0.82 0.18 0.52 +0.84 0.18 0.52 +0.86 0.18 0.52 +0.88 0.18 0.52 +0.12 0.2 0.52 +0.14 0.2 0.52 +0.16 0.2 0.52 +0.84 0.2 0.52 +0.86 0.2 0.52 +0.88 0.2 0.52 +0.1 0.22 0.52 +0.12 0.22 0.52 +0.14 0.22 0.52 +0.86 0.22 0.52 +0.88 0.22 0.52 +0.9 0.22 0.52 +0.08 0.24 0.52 +0.1 0.24 0.52 +0.12 0.24 0.52 +0.88 0.24 0.52 +0.9 0.24 0.52 +0.92 0.24 0.52 +0.08 0.26 0.52 +0.1 0.26 0.52 +0.9 0.26 0.52 +0.92 0.26 0.52 +0.06 0.28 0.52 +0.08 0.28 0.52 +0.1 0.28 0.52 +0.9 0.28 0.52 +0.92 0.28 0.52 +0.94 0.28 0.52 +0.06 0.3 0.52 +0.08 0.3 0.52 +0.92 0.3 0.52 +0.94 0.3 0.52 +0.04 0.32 0.52 +0.06 0.32 0.52 +0.08 0.32 0.52 +0.92 0.32 0.52 +0.94 0.32 0.52 +0.96 0.32 0.52 +0.04 0.34 0.52 +0.06 0.34 0.52 +0.94 0.34 0.52 +0.96 0.34 0.52 +0.04 0.36 0.52 +0.06 0.36 0.52 +0.94 0.36 0.52 +0.96 0.36 0.52 +0.02 0.38 0.52 +0.04 0.38 0.52 +0.06 0.38 0.52 +0.94 0.38 0.52 +0.96 0.38 0.52 +0.98 0.38 0.52 +0.02 0.4 0.52 +0.04 0.4 0.52 +0.06 0.4 0.52 +0.94 0.4 0.52 +0.96 0.4 0.52 +0.98 0.4 0.52 +0.02 0.42 0.52 +0.04 0.42 0.52 +0.96 0.42 0.52 +0.98 0.42 0.52 +0.02 0.44 0.52 +0.04 0.44 0.52 +0.96 0.44 0.52 +0.98 0.44 0.52 +0.02 0.46 0.52 +0.04 0.46 0.52 +0.96 0.46 0.52 +0.98 0.46 0.52 +0.02 0.48 0.52 +0.04 0.48 0.52 +0.96 0.48 0.52 +0.98 0.48 0.52 +0.02 0.5 0.52 +0.04 0.5 0.52 +0.96 0.5 0.52 +0.98 0.5 0.52 +0.02 0.52 0.52 +0.04 0.52 0.52 +0.96 0.52 0.52 +0.98 0.52 0.52 +0.02 0.54 0.52 +0.04 0.54 0.52 +0.96 0.54 0.52 +0.98 0.54 0.52 +0.02 0.56 0.52 +0.04 0.56 0.52 +0.96 0.56 0.52 +0.98 0.56 0.52 +0.02 0.58 0.52 +0.04 0.58 0.52 +0.96 0.58 0.52 +0.98 0.58 0.52 +0.02 0.6 0.52 +0.04 0.6 0.52 +0.06 0.6 0.52 +0.94 0.6 0.52 +0.96 0.6 0.52 +0.98 0.6 0.52 +0.02 0.62 0.52 +0.04 0.62 0.52 +0.06 0.62 0.52 +0.94 0.62 0.52 +0.96 0.62 0.52 +0.98 0.62 0.52 +0.04 0.64 0.52 +0.06 0.64 0.52 +0.94 0.64 0.52 +0.96 0.64 0.52 +0.04 0.66 0.52 +0.06 0.66 0.52 +0.94 0.66 0.52 +0.96 0.66 0.52 +0.04 0.68 0.52 +0.06 0.68 0.52 +0.08 0.68 0.52 +0.92 0.68 0.52 +0.94 0.68 0.52 +0.96 0.68 0.52 +0.06 0.7 0.52 +0.08 0.7 0.52 +0.92 0.7 0.52 +0.94 0.7 0.52 +0.06 0.72 0.52 +0.08 0.72 0.52 +0.1 0.72 0.52 +0.9 0.72 0.52 +0.92 0.72 0.52 +0.94 0.72 0.52 +0.08 0.74 0.52 +0.1 0.74 0.52 +0.9 0.74 0.52 +0.92 0.74 0.52 +0.08 0.76 0.52 +0.1 0.76 0.52 +0.12 0.76 0.52 +0.88 0.76 0.52 +0.9 0.76 0.52 +0.92 0.76 0.52 +0.1 0.78 0.52 +0.12 0.78 0.52 +0.14 0.78 0.52 +0.86 0.78 0.52 +0.88 0.78 0.52 +0.9 0.78 0.52 +0.12 0.8 0.52 +0.14 0.8 0.52 +0.16 0.8 0.52 +0.84 0.8 0.52 +0.86 0.8 0.52 +0.88 0.8 0.52 +0.12 0.82 0.52 +0.14 0.82 0.52 +0.16 0.82 0.52 +0.18 0.82 0.52 +0.82 0.82 0.52 +0.84 0.82 0.52 +0.86 0.82 0.52 +0.88 0.82 0.52 +0.14 0.84 0.52 +0.16 0.84 0.52 +0.18 0.84 0.52 +0.2 0.84 0.52 +0.8 0.84 0.52 +0.82 0.84 0.52 +0.84 0.84 0.52 +0.86 0.84 0.52 +0.16 0.86 0.52 +0.18 0.86 0.52 +0.2 0.86 0.52 +0.22 0.86 0.52 +0.78 0.86 0.52 +0.8 0.86 0.52 +0.82 0.86 0.52 +0.84 0.86 0.52 +0.18 0.88 0.52 +0.2 0.88 0.52 +0.22 0.88 0.52 +0.24 0.88 0.52 +0.76 0.88 0.52 +0.78 0.88 0.52 +0.8 0.88 0.52 +0.82 0.88 0.52 +0.22 0.9 0.52 +0.24 0.9 0.52 +0.26 0.9 0.52 +0.28 0.9 0.52 +0.72 0.9 0.52 +0.74 0.9 0.52 +0.76 0.9 0.52 +0.78 0.9 0.52 +0.24 0.92 0.52 +0.26 0.92 0.52 +0.28 0.92 0.52 +0.3 0.92 0.52 +0.32 0.92 0.52 +0.68 0.92 0.52 +0.7 0.92 0.52 +0.72 0.92 0.52 +0.74 0.92 0.52 +0.76 0.92 0.52 +0.28 0.94 0.52 +0.3 0.94 0.52 +0.32 0.94 0.52 +0.34 0.94 0.52 +0.36 0.94 0.52 +0.38 0.94 0.52 +0.4 0.94 0.52 +0.6 0.94 0.52 +0.62 0.94 0.52 +0.64 0.94 0.52 +0.66 0.94 0.52 +0.68 0.94 0.52 +0.7 0.94 0.52 +0.72 0.94 0.52 +0.32 0.96 0.52 +0.34 0.96 0.52 +0.36 0.96 0.52 +0.38 0.96 0.52 +0.4 0.96 0.52 +0.42 0.96 0.52 +0.44 0.96 0.52 +0.46 0.96 0.52 +0.48 0.96 0.52 +0.5 0.96 0.52 +0.52 0.96 0.52 +0.54 0.96 0.52 +0.56 0.96 0.52 +0.58 0.96 0.52 +0.6 0.96 0.52 +0.62 0.96 0.52 +0.64 0.96 0.52 +0.66 0.96 0.52 +0.68 0.96 0.52 +0.38 0.98 0.52 +0.4 0.98 0.52 +0.42 0.98 0.52 +0.44 0.98 0.52 +0.46 0.98 0.52 +0.48 0.98 0.52 +0.5 0.98 0.52 +0.52 0.98 0.52 +0.54 0.98 0.52 +0.56 0.98 0.52 +0.58 0.98 0.52 +0.6 0.98 0.52 +0.62 0.98 0.52 +0.38 0.02 0.54 +0.4 0.02 0.54 +0.42 0.02 0.54 +0.44 0.02 0.54 +0.46 0.02 0.54 +0.48 0.02 0.54 +0.5 0.02 0.54 +0.52 0.02 0.54 +0.54 0.02 0.54 +0.56 0.02 0.54 +0.58 0.02 0.54 +0.6 0.02 0.54 +0.62 0.02 0.54 +0.32 0.04 0.54 +0.34 0.04 0.54 +0.36 0.04 0.54 +0.38 0.04 0.54 +0.4 0.04 0.54 +0.42 0.04 0.54 +0.44 0.04 0.54 +0.46 0.04 0.54 +0.48 0.04 0.54 +0.5 0.04 0.54 +0.52 0.04 0.54 +0.54 0.04 0.54 +0.56 0.04 0.54 +0.58 0.04 0.54 +0.6 0.04 0.54 +0.62 0.04 0.54 +0.64 0.04 0.54 +0.66 0.04 0.54 +0.68 0.04 0.54 +0.28 0.06 0.54 +0.3 0.06 0.54 +0.32 0.06 0.54 +0.34 0.06 0.54 +0.36 0.06 0.54 +0.38 0.06 0.54 +0.4 0.06 0.54 +0.6 0.06 0.54 +0.62 0.06 0.54 +0.64 0.06 0.54 +0.66 0.06 0.54 +0.68 0.06 0.54 +0.7 0.06 0.54 +0.72 0.06 0.54 +0.24 0.08 0.54 +0.26 0.08 0.54 +0.28 0.08 0.54 +0.3 0.08 0.54 +0.32 0.08 0.54 +0.34 0.08 0.54 +0.66 0.08 0.54 +0.68 0.08 0.54 +0.7 0.08 0.54 +0.72 0.08 0.54 +0.74 0.08 0.54 +0.76 0.08 0.54 +0.22 0.1 0.54 +0.24 0.1 0.54 +0.26 0.1 0.54 +0.28 0.1 0.54 +0.72 0.1 0.54 +0.74 0.1 0.54 +0.76 0.1 0.54 +0.78 0.1 0.54 +0.18 0.12 0.54 +0.2 0.12 0.54 +0.22 0.12 0.54 +0.24 0.12 0.54 +0.26 0.12 0.54 +0.74 0.12 0.54 +0.76 0.12 0.54 +0.78 0.12 0.54 +0.8 0.12 0.54 +0.82 0.12 0.54 +0.16 0.14 0.54 +0.18 0.14 0.54 +0.2 0.14 0.54 +0.22 0.14 0.54 +0.78 0.14 0.54 +0.8 0.14 0.54 +0.82 0.14 0.54 +0.84 0.14 0.54 +0.14 0.16 0.54 +0.16 0.16 0.54 +0.18 0.16 0.54 +0.2 0.16 0.54 +0.8 0.16 0.54 +0.82 0.16 0.54 +0.84 0.16 0.54 +0.86 0.16 0.54 +0.12 0.18 0.54 +0.14 0.18 0.54 +0.16 0.18 0.54 +0.18 0.18 0.54 +0.82 0.18 0.54 +0.84 0.18 0.54 +0.86 0.18 0.54 +0.88 0.18 0.54 +0.12 0.2 0.54 +0.14 0.2 0.54 +0.16 0.2 0.54 +0.84 0.2 0.54 +0.86 0.2 0.54 +0.88 0.2 0.54 +0.1 0.22 0.54 +0.12 0.22 0.54 +0.14 0.22 0.54 +0.86 0.22 0.54 +0.88 0.22 0.54 +0.9 0.22 0.54 +0.08 0.24 0.54 +0.1 0.24 0.54 +0.12 0.24 0.54 +0.88 0.24 0.54 +0.9 0.24 0.54 +0.92 0.24 0.54 +0.08 0.26 0.54 +0.1 0.26 0.54 +0.12 0.26 0.54 +0.88 0.26 0.54 +0.9 0.26 0.54 +0.92 0.26 0.54 +0.06 0.28 0.54 +0.08 0.28 0.54 +0.1 0.28 0.54 +0.9 0.28 0.54 +0.92 0.28 0.54 +0.94 0.28 0.54 +0.06 0.3 0.54 +0.08 0.3 0.54 +0.92 0.3 0.54 +0.94 0.3 0.54 +0.04 0.32 0.54 +0.06 0.32 0.54 +0.08 0.32 0.54 +0.92 0.32 0.54 +0.94 0.32 0.54 +0.96 0.32 0.54 +0.04 0.34 0.54 +0.06 0.34 0.54 +0.08 0.34 0.54 +0.92 0.34 0.54 +0.94 0.34 0.54 +0.96 0.34 0.54 +0.04 0.36 0.54 +0.06 0.36 0.54 +0.94 0.36 0.54 +0.96 0.36 0.54 +0.02 0.38 0.54 +0.04 0.38 0.54 +0.06 0.38 0.54 +0.94 0.38 0.54 +0.96 0.38 0.54 +0.98 0.38 0.54 +0.02 0.4 0.54 +0.04 0.4 0.54 +0.06 0.4 0.54 +0.94 0.4 0.54 +0.96 0.4 0.54 +0.98 0.4 0.54 +0.02 0.42 0.54 +0.04 0.42 0.54 +0.96 0.42 0.54 +0.98 0.42 0.54 +0.02 0.44 0.54 +0.04 0.44 0.54 +0.96 0.44 0.54 +0.98 0.44 0.54 +0.02 0.46 0.54 +0.04 0.46 0.54 +0.96 0.46 0.54 +0.98 0.46 0.54 +0.02 0.48 0.54 +0.04 0.48 0.54 +0.96 0.48 0.54 +0.98 0.48 0.54 +0.02 0.5 0.54 +0.04 0.5 0.54 +0.96 0.5 0.54 +0.98 0.5 0.54 +0.02 0.52 0.54 +0.04 0.52 0.54 +0.96 0.52 0.54 +0.98 0.52 0.54 +0.02 0.54 0.54 +0.04 0.54 0.54 +0.96 0.54 0.54 +0.98 0.54 0.54 +0.02 0.56 0.54 +0.04 0.56 0.54 +0.96 0.56 0.54 +0.98 0.56 0.54 +0.02 0.58 0.54 +0.04 0.58 0.54 +0.96 0.58 0.54 +0.98 0.58 0.54 +0.02 0.6 0.54 +0.04 0.6 0.54 +0.06 0.6 0.54 +0.94 0.6 0.54 +0.96 0.6 0.54 +0.98 0.6 0.54 +0.02 0.62 0.54 +0.04 0.62 0.54 +0.06 0.62 0.54 +0.94 0.62 0.54 +0.96 0.62 0.54 +0.98 0.62 0.54 +0.04 0.64 0.54 +0.06 0.64 0.54 +0.94 0.64 0.54 +0.96 0.64 0.54 +0.04 0.66 0.54 +0.06 0.66 0.54 +0.08 0.66 0.54 +0.92 0.66 0.54 +0.94 0.66 0.54 +0.96 0.66 0.54 +0.04 0.68 0.54 +0.06 0.68 0.54 +0.08 0.68 0.54 +0.92 0.68 0.54 +0.94 0.68 0.54 +0.96 0.68 0.54 +0.06 0.7 0.54 +0.08 0.7 0.54 +0.92 0.7 0.54 +0.94 0.7 0.54 +0.06 0.72 0.54 +0.08 0.72 0.54 +0.1 0.72 0.54 +0.9 0.72 0.54 +0.92 0.72 0.54 +0.94 0.72 0.54 +0.08 0.74 0.54 +0.1 0.74 0.54 +0.12 0.74 0.54 +0.88 0.74 0.54 +0.9 0.74 0.54 +0.92 0.74 0.54 +0.08 0.76 0.54 +0.1 0.76 0.54 +0.12 0.76 0.54 +0.88 0.76 0.54 +0.9 0.76 0.54 +0.92 0.76 0.54 +0.1 0.78 0.54 +0.12 0.78 0.54 +0.14 0.78 0.54 +0.86 0.78 0.54 +0.88 0.78 0.54 +0.9 0.78 0.54 +0.12 0.8 0.54 +0.14 0.8 0.54 +0.16 0.8 0.54 +0.84 0.8 0.54 +0.86 0.8 0.54 +0.88 0.8 0.54 +0.12 0.82 0.54 +0.14 0.82 0.54 +0.16 0.82 0.54 +0.18 0.82 0.54 +0.82 0.82 0.54 +0.84 0.82 0.54 +0.86 0.82 0.54 +0.88 0.82 0.54 +0.14 0.84 0.54 +0.16 0.84 0.54 +0.18 0.84 0.54 +0.2 0.84 0.54 +0.8 0.84 0.54 +0.82 0.84 0.54 +0.84 0.84 0.54 +0.86 0.84 0.54 +0.16 0.86 0.54 +0.18 0.86 0.54 +0.2 0.86 0.54 +0.22 0.86 0.54 +0.78 0.86 0.54 +0.8 0.86 0.54 +0.82 0.86 0.54 +0.84 0.86 0.54 +0.18 0.88 0.54 +0.2 0.88 0.54 +0.22 0.88 0.54 +0.24 0.88 0.54 +0.26 0.88 0.54 +0.74 0.88 0.54 +0.76 0.88 0.54 +0.78 0.88 0.54 +0.8 0.88 0.54 +0.82 0.88 0.54 +0.22 0.9 0.54 +0.24 0.9 0.54 +0.26 0.9 0.54 +0.28 0.9 0.54 +0.72 0.9 0.54 +0.74 0.9 0.54 +0.76 0.9 0.54 +0.78 0.9 0.54 +0.24 0.92 0.54 +0.26 0.92 0.54 +0.28 0.92 0.54 +0.3 0.92 0.54 +0.32 0.92 0.54 +0.34 0.92 0.54 +0.66 0.92 0.54 +0.68 0.92 0.54 +0.7 0.92 0.54 +0.72 0.92 0.54 +0.74 0.92 0.54 +0.76 0.92 0.54 +0.28 0.94 0.54 +0.3 0.94 0.54 +0.32 0.94 0.54 +0.34 0.94 0.54 +0.36 0.94 0.54 +0.38 0.94 0.54 +0.4 0.94 0.54 +0.6 0.94 0.54 +0.62 0.94 0.54 +0.64 0.94 0.54 +0.66 0.94 0.54 +0.68 0.94 0.54 +0.7 0.94 0.54 +0.72 0.94 0.54 +0.32 0.96 0.54 +0.34 0.96 0.54 +0.36 0.96 0.54 +0.38 0.96 0.54 +0.4 0.96 0.54 +0.42 0.96 0.54 +0.44 0.96 0.54 +0.46 0.96 0.54 +0.48 0.96 0.54 +0.5 0.96 0.54 +0.52 0.96 0.54 +0.54 0.96 0.54 +0.56 0.96 0.54 +0.58 0.96 0.54 +0.6 0.96 0.54 +0.62 0.96 0.54 +0.64 0.96 0.54 +0.66 0.96 0.54 +0.68 0.96 0.54 +0.38 0.98 0.54 +0.4 0.98 0.54 +0.42 0.98 0.54 +0.44 0.98 0.54 +0.46 0.98 0.54 +0.48 0.98 0.54 +0.5 0.98 0.54 +0.52 0.98 0.54 +0.54 0.98 0.54 +0.56 0.98 0.54 +0.58 0.98 0.54 +0.6 0.98 0.54 +0.62 0.98 0.54 +0.38 0.02 0.56 +0.4 0.02 0.56 +0.42 0.02 0.56 +0.44 0.02 0.56 +0.46 0.02 0.56 +0.48 0.02 0.56 +0.5 0.02 0.56 +0.52 0.02 0.56 +0.54 0.02 0.56 +0.56 0.02 0.56 +0.58 0.02 0.56 +0.6 0.02 0.56 +0.62 0.02 0.56 +0.32 0.04 0.56 +0.34 0.04 0.56 +0.36 0.04 0.56 +0.38 0.04 0.56 +0.4 0.04 0.56 +0.42 0.04 0.56 +0.44 0.04 0.56 +0.46 0.04 0.56 +0.48 0.04 0.56 +0.5 0.04 0.56 +0.52 0.04 0.56 +0.54 0.04 0.56 +0.56 0.04 0.56 +0.58 0.04 0.56 +0.6 0.04 0.56 +0.62 0.04 0.56 +0.64 0.04 0.56 +0.66 0.04 0.56 +0.68 0.04 0.56 +0.28 0.06 0.56 +0.3 0.06 0.56 +0.32 0.06 0.56 +0.34 0.06 0.56 +0.36 0.06 0.56 +0.38 0.06 0.56 +0.4 0.06 0.56 +0.42 0.06 0.56 +0.58 0.06 0.56 +0.6 0.06 0.56 +0.62 0.06 0.56 +0.64 0.06 0.56 +0.66 0.06 0.56 +0.68 0.06 0.56 +0.7 0.06 0.56 +0.72 0.06 0.56 +0.24 0.08 0.56 +0.26 0.08 0.56 +0.28 0.08 0.56 +0.3 0.08 0.56 +0.32 0.08 0.56 +0.34 0.08 0.56 +0.66 0.08 0.56 +0.68 0.08 0.56 +0.7 0.08 0.56 +0.72 0.08 0.56 +0.74 0.08 0.56 +0.76 0.08 0.56 +0.22 0.1 0.56 +0.24 0.1 0.56 +0.26 0.1 0.56 +0.28 0.1 0.56 +0.3 0.1 0.56 +0.7 0.1 0.56 +0.72 0.1 0.56 +0.74 0.1 0.56 +0.76 0.1 0.56 +0.78 0.1 0.56 +0.2 0.12 0.56 +0.22 0.12 0.56 +0.24 0.12 0.56 +0.26 0.12 0.56 +0.74 0.12 0.56 +0.76 0.12 0.56 +0.78 0.12 0.56 +0.8 0.12 0.56 +0.16 0.14 0.56 +0.18 0.14 0.56 +0.2 0.14 0.56 +0.22 0.14 0.56 +0.78 0.14 0.56 +0.8 0.14 0.56 +0.82 0.14 0.56 +0.84 0.14 0.56 +0.14 0.16 0.56 +0.16 0.16 0.56 +0.18 0.16 0.56 +0.2 0.16 0.56 +0.8 0.16 0.56 +0.82 0.16 0.56 +0.84 0.16 0.56 +0.86 0.16 0.56 +0.14 0.18 0.56 +0.16 0.18 0.56 +0.18 0.18 0.56 +0.82 0.18 0.56 +0.84 0.18 0.56 +0.86 0.18 0.56 +0.12 0.2 0.56 +0.14 0.2 0.56 +0.16 0.2 0.56 +0.84 0.2 0.56 +0.86 0.2 0.56 +0.88 0.2 0.56 +0.1 0.22 0.56 +0.12 0.22 0.56 +0.14 0.22 0.56 +0.86 0.22 0.56 +0.88 0.22 0.56 +0.9 0.22 0.56 +0.08 0.24 0.56 +0.1 0.24 0.56 +0.12 0.24 0.56 +0.88 0.24 0.56 +0.9 0.24 0.56 +0.92 0.24 0.56 +0.08 0.26 0.56 +0.1 0.26 0.56 +0.12 0.26 0.56 +0.88 0.26 0.56 +0.9 0.26 0.56 +0.92 0.26 0.56 +0.06 0.28 0.56 +0.08 0.28 0.56 +0.1 0.28 0.56 +0.9 0.28 0.56 +0.92 0.28 0.56 +0.94 0.28 0.56 +0.06 0.3 0.56 +0.08 0.3 0.56 +0.1 0.3 0.56 +0.9 0.3 0.56 +0.92 0.3 0.56 +0.94 0.3 0.56 +0.04 0.32 0.56 +0.06 0.32 0.56 +0.08 0.32 0.56 +0.92 0.32 0.56 +0.94 0.32 0.56 +0.96 0.32 0.56 +0.04 0.34 0.56 +0.06 0.34 0.56 +0.08 0.34 0.56 +0.92 0.34 0.56 +0.94 0.34 0.56 +0.96 0.34 0.56 +0.04 0.36 0.56 +0.06 0.36 0.56 +0.94 0.36 0.56 +0.96 0.36 0.56 +0.02 0.38 0.56 +0.04 0.38 0.56 +0.06 0.38 0.56 +0.94 0.38 0.56 +0.96 0.38 0.56 +0.98 0.38 0.56 +0.02 0.4 0.56 +0.04 0.4 0.56 +0.06 0.4 0.56 +0.94 0.4 0.56 +0.96 0.4 0.56 +0.98 0.4 0.56 +0.02 0.42 0.56 +0.04 0.42 0.56 +0.06 0.42 0.56 +0.94 0.42 0.56 +0.96 0.42 0.56 +0.98 0.42 0.56 +0.02 0.44 0.56 +0.04 0.44 0.56 +0.96 0.44 0.56 +0.98 0.44 0.56 +0.02 0.46 0.56 +0.04 0.46 0.56 +0.96 0.46 0.56 +0.98 0.46 0.56 +0.02 0.48 0.56 +0.04 0.48 0.56 +0.96 0.48 0.56 +0.98 0.48 0.56 +0.02 0.5 0.56 +0.04 0.5 0.56 +0.96 0.5 0.56 +0.98 0.5 0.56 +0.02 0.52 0.56 +0.04 0.52 0.56 +0.96 0.52 0.56 +0.98 0.52 0.56 +0.02 0.54 0.56 +0.04 0.54 0.56 +0.96 0.54 0.56 +0.98 0.54 0.56 +0.02 0.56 0.56 +0.04 0.56 0.56 +0.96 0.56 0.56 +0.98 0.56 0.56 +0.02 0.58 0.56 +0.04 0.58 0.56 +0.06 0.58 0.56 +0.94 0.58 0.56 +0.96 0.58 0.56 +0.98 0.58 0.56 +0.02 0.6 0.56 +0.04 0.6 0.56 +0.06 0.6 0.56 +0.94 0.6 0.56 +0.96 0.6 0.56 +0.98 0.6 0.56 +0.02 0.62 0.56 +0.04 0.62 0.56 +0.06 0.62 0.56 +0.94 0.62 0.56 +0.96 0.62 0.56 +0.98 0.62 0.56 +0.04 0.64 0.56 +0.06 0.64 0.56 +0.94 0.64 0.56 +0.96 0.64 0.56 +0.04 0.66 0.56 +0.06 0.66 0.56 +0.08 0.66 0.56 +0.92 0.66 0.56 +0.94 0.66 0.56 +0.96 0.66 0.56 +0.04 0.68 0.56 +0.06 0.68 0.56 +0.08 0.68 0.56 +0.92 0.68 0.56 +0.94 0.68 0.56 +0.96 0.68 0.56 +0.06 0.7 0.56 +0.08 0.7 0.56 +0.1 0.7 0.56 +0.9 0.7 0.56 +0.92 0.7 0.56 +0.94 0.7 0.56 +0.06 0.72 0.56 +0.08 0.72 0.56 +0.1 0.72 0.56 +0.9 0.72 0.56 +0.92 0.72 0.56 +0.94 0.72 0.56 +0.08 0.74 0.56 +0.1 0.74 0.56 +0.12 0.74 0.56 +0.88 0.74 0.56 +0.9 0.74 0.56 +0.92 0.74 0.56 +0.08 0.76 0.56 +0.1 0.76 0.56 +0.12 0.76 0.56 +0.88 0.76 0.56 +0.9 0.76 0.56 +0.92 0.76 0.56 +0.1 0.78 0.56 +0.12 0.78 0.56 +0.14 0.78 0.56 +0.86 0.78 0.56 +0.88 0.78 0.56 +0.9 0.78 0.56 +0.12 0.8 0.56 +0.14 0.8 0.56 +0.16 0.8 0.56 +0.84 0.8 0.56 +0.86 0.8 0.56 +0.88 0.8 0.56 +0.14 0.82 0.56 +0.16 0.82 0.56 +0.18 0.82 0.56 +0.82 0.82 0.56 +0.84 0.82 0.56 +0.86 0.82 0.56 +0.14 0.84 0.56 +0.16 0.84 0.56 +0.18 0.84 0.56 +0.2 0.84 0.56 +0.8 0.84 0.56 +0.82 0.84 0.56 +0.84 0.84 0.56 +0.86 0.84 0.56 +0.16 0.86 0.56 +0.18 0.86 0.56 +0.2 0.86 0.56 +0.22 0.86 0.56 +0.78 0.86 0.56 +0.8 0.86 0.56 +0.82 0.86 0.56 +0.84 0.86 0.56 +0.2 0.88 0.56 +0.22 0.88 0.56 +0.24 0.88 0.56 +0.26 0.88 0.56 +0.74 0.88 0.56 +0.76 0.88 0.56 +0.78 0.88 0.56 +0.8 0.88 0.56 +0.22 0.9 0.56 +0.24 0.9 0.56 +0.26 0.9 0.56 +0.28 0.9 0.56 +0.3 0.9 0.56 +0.7 0.9 0.56 +0.72 0.9 0.56 +0.74 0.9 0.56 +0.76 0.9 0.56 +0.78 0.9 0.56 +0.24 0.92 0.56 +0.26 0.92 0.56 +0.28 0.92 0.56 +0.3 0.92 0.56 +0.32 0.92 0.56 +0.34 0.92 0.56 +0.66 0.92 0.56 +0.68 0.92 0.56 +0.7 0.92 0.56 +0.72 0.92 0.56 +0.74 0.92 0.56 +0.76 0.92 0.56 +0.28 0.94 0.56 +0.3 0.94 0.56 +0.32 0.94 0.56 +0.34 0.94 0.56 +0.36 0.94 0.56 +0.38 0.94 0.56 +0.4 0.94 0.56 +0.42 0.94 0.56 +0.58 0.94 0.56 +0.6 0.94 0.56 +0.62 0.94 0.56 +0.64 0.94 0.56 +0.66 0.94 0.56 +0.68 0.94 0.56 +0.7 0.94 0.56 +0.72 0.94 0.56 +0.32 0.96 0.56 +0.34 0.96 0.56 +0.36 0.96 0.56 +0.38 0.96 0.56 +0.4 0.96 0.56 +0.42 0.96 0.56 +0.44 0.96 0.56 +0.46 0.96 0.56 +0.48 0.96 0.56 +0.5 0.96 0.56 +0.52 0.96 0.56 +0.54 0.96 0.56 +0.56 0.96 0.56 +0.58 0.96 0.56 +0.6 0.96 0.56 +0.62 0.96 0.56 +0.64 0.96 0.56 +0.66 0.96 0.56 +0.68 0.96 0.56 +0.38 0.98 0.56 +0.4 0.98 0.56 +0.42 0.98 0.56 +0.44 0.98 0.56 +0.46 0.98 0.56 +0.48 0.98 0.56 +0.5 0.98 0.56 +0.52 0.98 0.56 +0.54 0.98 0.56 +0.56 0.98 0.56 +0.58 0.98 0.56 +0.6 0.98 0.56 +0.62 0.98 0.56 +0.4 0.02 0.58 +0.42 0.02 0.58 +0.44 0.02 0.58 +0.46 0.02 0.58 +0.48 0.02 0.58 +0.5 0.02 0.58 +0.52 0.02 0.58 +0.54 0.02 0.58 +0.56 0.02 0.58 +0.58 0.02 0.58 +0.6 0.02 0.58 +0.34 0.04 0.58 +0.36 0.04 0.58 +0.38 0.04 0.58 +0.4 0.04 0.58 +0.42 0.04 0.58 +0.44 0.04 0.58 +0.46 0.04 0.58 +0.48 0.04 0.58 +0.5 0.04 0.58 +0.52 0.04 0.58 +0.54 0.04 0.58 +0.56 0.04 0.58 +0.58 0.04 0.58 +0.6 0.04 0.58 +0.62 0.04 0.58 +0.64 0.04 0.58 +0.66 0.04 0.58 +0.28 0.06 0.58 +0.3 0.06 0.58 +0.32 0.06 0.58 +0.34 0.06 0.58 +0.36 0.06 0.58 +0.38 0.06 0.58 +0.4 0.06 0.58 +0.42 0.06 0.58 +0.44 0.06 0.58 +0.56 0.06 0.58 +0.58 0.06 0.58 +0.6 0.06 0.58 +0.62 0.06 0.58 +0.64 0.06 0.58 +0.66 0.06 0.58 +0.68 0.06 0.58 +0.7 0.06 0.58 +0.72 0.06 0.58 +0.26 0.08 0.58 +0.28 0.08 0.58 +0.3 0.08 0.58 +0.32 0.08 0.58 +0.34 0.08 0.58 +0.66 0.08 0.58 +0.68 0.08 0.58 +0.7 0.08 0.58 +0.72 0.08 0.58 +0.74 0.08 0.58 +0.22 0.1 0.58 +0.24 0.1 0.58 +0.26 0.1 0.58 +0.28 0.1 0.58 +0.3 0.1 0.58 +0.7 0.1 0.58 +0.72 0.1 0.58 +0.74 0.1 0.58 +0.76 0.1 0.58 +0.78 0.1 0.58 +0.2 0.12 0.58 +0.22 0.12 0.58 +0.24 0.12 0.58 +0.26 0.12 0.58 +0.74 0.12 0.58 +0.76 0.12 0.58 +0.78 0.12 0.58 +0.8 0.12 0.58 +0.18 0.14 0.58 +0.2 0.14 0.58 +0.22 0.14 0.58 +0.24 0.14 0.58 +0.76 0.14 0.58 +0.78 0.14 0.58 +0.8 0.14 0.58 +0.82 0.14 0.58 +0.16 0.16 0.58 +0.18 0.16 0.58 +0.2 0.16 0.58 +0.8 0.16 0.58 +0.82 0.16 0.58 +0.84 0.16 0.58 +0.14 0.18 0.58 +0.16 0.18 0.58 +0.18 0.18 0.58 +0.82 0.18 0.58 +0.84 0.18 0.58 +0.86 0.18 0.58 +0.12 0.2 0.58 +0.14 0.2 0.58 +0.16 0.2 0.58 +0.84 0.2 0.58 +0.86 0.2 0.58 +0.88 0.2 0.58 +0.1 0.22 0.58 +0.12 0.22 0.58 +0.14 0.22 0.58 +0.86 0.22 0.58 +0.88 0.22 0.58 +0.9 0.22 0.58 +0.1 0.24 0.58 +0.12 0.24 0.58 +0.14 0.24 0.58 +0.86 0.24 0.58 +0.88 0.24 0.58 +0.9 0.24 0.58 +0.08 0.26 0.58 +0.1 0.26 0.58 +0.12 0.26 0.58 +0.88 0.26 0.58 +0.9 0.26 0.58 +0.92 0.26 0.58 +0.06 0.28 0.58 +0.08 0.28 0.58 +0.1 0.28 0.58 +0.9 0.28 0.58 +0.92 0.28 0.58 +0.94 0.28 0.58 +0.06 0.3 0.58 +0.08 0.3 0.58 +0.1 0.3 0.58 +0.9 0.3 0.58 +0.92 0.3 0.58 +0.94 0.3 0.58 +0.06 0.32 0.58 +0.08 0.32 0.58 +0.92 0.32 0.58 +0.94 0.32 0.58 +0.04 0.34 0.58 +0.06 0.34 0.58 +0.08 0.34 0.58 +0.92 0.34 0.58 +0.94 0.34 0.58 +0.96 0.34 0.58 +0.04 0.36 0.58 +0.06 0.36 0.58 +0.94 0.36 0.58 +0.96 0.36 0.58 +0.04 0.38 0.58 +0.06 0.38 0.58 +0.94 0.38 0.58 +0.96 0.38 0.58 +0.02 0.4 0.58 +0.04 0.4 0.58 +0.06 0.4 0.58 +0.94 0.4 0.58 +0.96 0.4 0.58 +0.98 0.4 0.58 +0.02 0.42 0.58 +0.04 0.42 0.58 +0.06 0.42 0.58 +0.94 0.42 0.58 +0.96 0.42 0.58 +0.98 0.42 0.58 +0.02 0.44 0.58 +0.04 0.44 0.58 +0.06 0.44 0.58 +0.94 0.44 0.58 +0.96 0.44 0.58 +0.98 0.44 0.58 +0.02 0.46 0.58 +0.04 0.46 0.58 +0.96 0.46 0.58 +0.98 0.46 0.58 +0.02 0.48 0.58 +0.04 0.48 0.58 +0.96 0.48 0.58 +0.98 0.48 0.58 +0.02 0.5 0.58 +0.04 0.5 0.58 +0.96 0.5 0.58 +0.98 0.5 0.58 +0.02 0.52 0.58 +0.04 0.52 0.58 +0.96 0.52 0.58 +0.98 0.52 0.58 +0.02 0.54 0.58 +0.04 0.54 0.58 +0.96 0.54 0.58 +0.98 0.54 0.58 +0.02 0.56 0.58 +0.04 0.56 0.58 +0.06 0.56 0.58 +0.94 0.56 0.58 +0.96 0.56 0.58 +0.98 0.56 0.58 +0.02 0.58 0.58 +0.04 0.58 0.58 +0.06 0.58 0.58 +0.94 0.58 0.58 +0.96 0.58 0.58 +0.98 0.58 0.58 +0.02 0.6 0.58 +0.04 0.6 0.58 +0.06 0.6 0.58 +0.94 0.6 0.58 +0.96 0.6 0.58 +0.98 0.6 0.58 +0.04 0.62 0.58 +0.06 0.62 0.58 +0.94 0.62 0.58 +0.96 0.62 0.58 +0.04 0.64 0.58 +0.06 0.64 0.58 +0.94 0.64 0.58 +0.96 0.64 0.58 +0.04 0.66 0.58 +0.06 0.66 0.58 +0.08 0.66 0.58 +0.92 0.66 0.58 +0.94 0.66 0.58 +0.96 0.66 0.58 +0.06 0.68 0.58 +0.08 0.68 0.58 +0.92 0.68 0.58 +0.94 0.68 0.58 +0.06 0.7 0.58 +0.08 0.7 0.58 +0.1 0.7 0.58 +0.9 0.7 0.58 +0.92 0.7 0.58 +0.94 0.7 0.58 +0.06 0.72 0.58 +0.08 0.72 0.58 +0.1 0.72 0.58 +0.9 0.72 0.58 +0.92 0.72 0.58 +0.94 0.72 0.58 +0.08 0.74 0.58 +0.1 0.74 0.58 +0.12 0.74 0.58 +0.88 0.74 0.58 +0.9 0.74 0.58 +0.92 0.74 0.58 +0.1 0.76 0.58 +0.12 0.76 0.58 +0.14 0.76 0.58 +0.86 0.76 0.58 +0.88 0.76 0.58 +0.9 0.76 0.58 +0.1 0.78 0.58 +0.12 0.78 0.58 +0.14 0.78 0.58 +0.86 0.78 0.58 +0.88 0.78 0.58 +0.9 0.78 0.58 +0.12 0.8 0.58 +0.14 0.8 0.58 +0.16 0.8 0.58 +0.84 0.8 0.58 +0.86 0.8 0.58 +0.88 0.8 0.58 +0.14 0.82 0.58 +0.16 0.82 0.58 +0.18 0.82 0.58 +0.82 0.82 0.58 +0.84 0.82 0.58 +0.86 0.82 0.58 +0.16 0.84 0.58 +0.18 0.84 0.58 +0.2 0.84 0.58 +0.8 0.84 0.58 +0.82 0.84 0.58 +0.84 0.84 0.58 +0.18 0.86 0.58 +0.2 0.86 0.58 +0.22 0.86 0.58 +0.24 0.86 0.58 +0.76 0.86 0.58 +0.78 0.86 0.58 +0.8 0.86 0.58 +0.82 0.86 0.58 +0.2 0.88 0.58 +0.22 0.88 0.58 +0.24 0.88 0.58 +0.26 0.88 0.58 +0.74 0.88 0.58 +0.76 0.88 0.58 +0.78 0.88 0.58 +0.8 0.88 0.58 +0.22 0.9 0.58 +0.24 0.9 0.58 +0.26 0.9 0.58 +0.28 0.9 0.58 +0.3 0.9 0.58 +0.7 0.9 0.58 +0.72 0.9 0.58 +0.74 0.9 0.58 +0.76 0.9 0.58 +0.78 0.9 0.58 +0.26 0.92 0.58 +0.28 0.92 0.58 +0.3 0.92 0.58 +0.32 0.92 0.58 +0.34 0.92 0.58 +0.66 0.92 0.58 +0.68 0.92 0.58 +0.7 0.92 0.58 +0.72 0.92 0.58 +0.74 0.92 0.58 +0.28 0.94 0.58 +0.3 0.94 0.58 +0.32 0.94 0.58 +0.34 0.94 0.58 +0.36 0.94 0.58 +0.38 0.94 0.58 +0.4 0.94 0.58 +0.42 0.94 0.58 +0.44 0.94 0.58 +0.56 0.94 0.58 +0.58 0.94 0.58 +0.6 0.94 0.58 +0.62 0.94 0.58 +0.64 0.94 0.58 +0.66 0.94 0.58 +0.68 0.94 0.58 +0.7 0.94 0.58 +0.72 0.94 0.58 +0.34 0.96 0.58 +0.36 0.96 0.58 +0.38 0.96 0.58 +0.4 0.96 0.58 +0.42 0.96 0.58 +0.44 0.96 0.58 +0.46 0.96 0.58 +0.48 0.96 0.58 +0.5 0.96 0.58 +0.52 0.96 0.58 +0.54 0.96 0.58 +0.56 0.96 0.58 +0.58 0.96 0.58 +0.6 0.96 0.58 +0.62 0.96 0.58 +0.64 0.96 0.58 +0.66 0.96 0.58 +0.4 0.98 0.58 +0.42 0.98 0.58 +0.44 0.98 0.58 +0.46 0.98 0.58 +0.48 0.98 0.58 +0.5 0.98 0.58 +0.52 0.98 0.58 +0.54 0.98 0.58 +0.56 0.98 0.58 +0.58 0.98 0.58 +0.6 0.98 0.58 +0.42 0.02 0.6 +0.44 0.02 0.6 +0.46 0.02 0.6 +0.48 0.02 0.6 +0.5 0.02 0.6 +0.52 0.02 0.6 +0.54 0.02 0.6 +0.56 0.02 0.6 +0.58 0.02 0.6 +0.34 0.04 0.6 +0.36 0.04 0.6 +0.38 0.04 0.6 +0.4 0.04 0.6 +0.42 0.04 0.6 +0.44 0.04 0.6 +0.46 0.04 0.6 +0.48 0.04 0.6 +0.5 0.04 0.6 +0.52 0.04 0.6 +0.54 0.04 0.6 +0.56 0.04 0.6 +0.58 0.04 0.6 +0.6 0.04 0.6 +0.62 0.04 0.6 +0.64 0.04 0.6 +0.66 0.04 0.6 +0.3 0.06 0.6 +0.32 0.06 0.6 +0.34 0.06 0.6 +0.36 0.06 0.6 +0.38 0.06 0.6 +0.4 0.06 0.6 +0.42 0.06 0.6 +0.44 0.06 0.6 +0.46 0.06 0.6 +0.48 0.06 0.6 +0.5 0.06 0.6 +0.52 0.06 0.6 +0.54 0.06 0.6 +0.56 0.06 0.6 +0.58 0.06 0.6 +0.6 0.06 0.6 +0.62 0.06 0.6 +0.64 0.06 0.6 +0.66 0.06 0.6 +0.68 0.06 0.6 +0.7 0.06 0.6 +0.26 0.08 0.6 +0.28 0.08 0.6 +0.3 0.08 0.6 +0.32 0.08 0.6 +0.34 0.08 0.6 +0.36 0.08 0.6 +0.64 0.08 0.6 +0.66 0.08 0.6 +0.68 0.08 0.6 +0.7 0.08 0.6 +0.72 0.08 0.6 +0.74 0.08 0.6 +0.22 0.1 0.6 +0.24 0.1 0.6 +0.26 0.1 0.6 +0.28 0.1 0.6 +0.3 0.1 0.6 +0.7 0.1 0.6 +0.72 0.1 0.6 +0.74 0.1 0.6 +0.76 0.1 0.6 +0.78 0.1 0.6 +0.2 0.12 0.6 +0.22 0.12 0.6 +0.24 0.12 0.6 +0.26 0.12 0.6 +0.28 0.12 0.6 +0.72 0.12 0.6 +0.74 0.12 0.6 +0.76 0.12 0.6 +0.78 0.12 0.6 +0.8 0.12 0.6 +0.18 0.14 0.6 +0.2 0.14 0.6 +0.22 0.14 0.6 +0.24 0.14 0.6 +0.76 0.14 0.6 +0.78 0.14 0.6 +0.8 0.14 0.6 +0.82 0.14 0.6 +0.16 0.16 0.6 +0.18 0.16 0.6 +0.2 0.16 0.6 +0.22 0.16 0.6 +0.78 0.16 0.6 +0.8 0.16 0.6 +0.82 0.16 0.6 +0.84 0.16 0.6 +0.14 0.18 0.6 +0.16 0.18 0.6 +0.18 0.18 0.6 +0.82 0.18 0.6 +0.84 0.18 0.6 +0.86 0.18 0.6 +0.12 0.2 0.6 +0.14 0.2 0.6 +0.16 0.2 0.6 +0.84 0.2 0.6 +0.86 0.2 0.6 +0.88 0.2 0.6 +0.1 0.22 0.6 +0.12 0.22 0.6 +0.14 0.22 0.6 +0.16 0.22 0.6 +0.84 0.22 0.6 +0.86 0.22 0.6 +0.88 0.22 0.6 +0.9 0.22 0.6 +0.1 0.24 0.6 +0.12 0.24 0.6 +0.14 0.24 0.6 +0.86 0.24 0.6 +0.88 0.24 0.6 +0.9 0.24 0.6 +0.08 0.26 0.6 +0.1 0.26 0.6 +0.12 0.26 0.6 +0.88 0.26 0.6 +0.9 0.26 0.6 +0.92 0.26 0.6 +0.08 0.28 0.6 +0.1 0.28 0.6 +0.12 0.28 0.6 +0.88 0.28 0.6 +0.9 0.28 0.6 +0.92 0.28 0.6 +0.06 0.3 0.6 +0.08 0.3 0.6 +0.1 0.3 0.6 +0.9 0.3 0.6 +0.92 0.3 0.6 +0.94 0.3 0.6 +0.06 0.32 0.6 +0.08 0.32 0.6 +0.92 0.32 0.6 +0.94 0.32 0.6 +0.04 0.34 0.6 +0.06 0.34 0.6 +0.08 0.34 0.6 +0.92 0.34 0.6 +0.94 0.34 0.6 +0.96 0.34 0.6 +0.04 0.36 0.6 +0.06 0.36 0.6 +0.08 0.36 0.6 +0.92 0.36 0.6 +0.94 0.36 0.6 +0.96 0.36 0.6 +0.04 0.38 0.6 +0.06 0.38 0.6 +0.94 0.38 0.6 +0.96 0.38 0.6 +0.04 0.4 0.6 +0.06 0.4 0.6 +0.94 0.4 0.6 +0.96 0.4 0.6 +0.02 0.42 0.6 +0.04 0.42 0.6 +0.06 0.42 0.6 +0.94 0.42 0.6 +0.96 0.42 0.6 +0.98 0.42 0.6 +0.02 0.44 0.6 +0.04 0.44 0.6 +0.06 0.44 0.6 +0.94 0.44 0.6 +0.96 0.44 0.6 +0.98 0.44 0.6 +0.02 0.46 0.6 +0.04 0.46 0.6 +0.06 0.46 0.6 +0.94 0.46 0.6 +0.96 0.46 0.6 +0.98 0.46 0.6 +0.02 0.48 0.6 +0.04 0.48 0.6 +0.06 0.48 0.6 +0.94 0.48 0.6 +0.96 0.48 0.6 +0.98 0.48 0.6 +0.02 0.5 0.6 +0.04 0.5 0.6 +0.06 0.5 0.6 +0.94 0.5 0.6 +0.96 0.5 0.6 +0.98 0.5 0.6 +0.02 0.52 0.6 +0.04 0.52 0.6 +0.06 0.52 0.6 +0.94 0.52 0.6 +0.96 0.52 0.6 +0.98 0.52 0.6 +0.02 0.54 0.6 +0.04 0.54 0.6 +0.06 0.54 0.6 +0.94 0.54 0.6 +0.96 0.54 0.6 +0.98 0.54 0.6 +0.02 0.56 0.6 +0.04 0.56 0.6 +0.06 0.56 0.6 +0.94 0.56 0.6 +0.96 0.56 0.6 +0.98 0.56 0.6 +0.02 0.58 0.6 +0.04 0.58 0.6 +0.06 0.58 0.6 +0.94 0.58 0.6 +0.96 0.58 0.6 +0.98 0.58 0.6 +0.04 0.6 0.6 +0.06 0.6 0.6 +0.94 0.6 0.6 +0.96 0.6 0.6 +0.04 0.62 0.6 +0.06 0.62 0.6 +0.94 0.62 0.6 +0.96 0.62 0.6 +0.04 0.64 0.6 +0.06 0.64 0.6 +0.08 0.64 0.6 +0.92 0.64 0.6 +0.94 0.64 0.6 +0.96 0.64 0.6 +0.04 0.66 0.6 +0.06 0.66 0.6 +0.08 0.66 0.6 +0.92 0.66 0.6 +0.94 0.66 0.6 +0.96 0.66 0.6 +0.06 0.68 0.6 +0.08 0.68 0.6 +0.92 0.68 0.6 +0.94 0.68 0.6 +0.06 0.7 0.6 +0.08 0.7 0.6 +0.1 0.7 0.6 +0.9 0.7 0.6 +0.92 0.7 0.6 +0.94 0.7 0.6 +0.08 0.72 0.6 +0.1 0.72 0.6 +0.12 0.72 0.6 +0.88 0.72 0.6 +0.9 0.72 0.6 +0.92 0.72 0.6 +0.08 0.74 0.6 +0.1 0.74 0.6 +0.12 0.74 0.6 +0.88 0.74 0.6 +0.9 0.74 0.6 +0.92 0.74 0.6 +0.1 0.76 0.6 +0.12 0.76 0.6 +0.14 0.76 0.6 +0.86 0.76 0.6 +0.88 0.76 0.6 +0.9 0.76 0.6 +0.1 0.78 0.6 +0.12 0.78 0.6 +0.14 0.78 0.6 +0.16 0.78 0.6 +0.84 0.78 0.6 +0.86 0.78 0.6 +0.88 0.78 0.6 +0.9 0.78 0.6 +0.12 0.8 0.6 +0.14 0.8 0.6 +0.16 0.8 0.6 +0.84 0.8 0.6 +0.86 0.8 0.6 +0.88 0.8 0.6 +0.14 0.82 0.6 +0.16 0.82 0.6 +0.18 0.82 0.6 +0.82 0.82 0.6 +0.84 0.82 0.6 +0.86 0.82 0.6 +0.16 0.84 0.6 +0.18 0.84 0.6 +0.2 0.84 0.6 +0.22 0.84 0.6 +0.78 0.84 0.6 +0.8 0.84 0.6 +0.82 0.84 0.6 +0.84 0.84 0.6 +0.18 0.86 0.6 +0.2 0.86 0.6 +0.22 0.86 0.6 +0.24 0.86 0.6 +0.76 0.86 0.6 +0.78 0.86 0.6 +0.8 0.86 0.6 +0.82 0.86 0.6 +0.2 0.88 0.6 +0.22 0.88 0.6 +0.24 0.88 0.6 +0.26 0.88 0.6 +0.28 0.88 0.6 +0.72 0.88 0.6 +0.74 0.88 0.6 +0.76 0.88 0.6 +0.78 0.88 0.6 +0.8 0.88 0.6 +0.22 0.9 0.6 +0.24 0.9 0.6 +0.26 0.9 0.6 +0.28 0.9 0.6 +0.3 0.9 0.6 +0.7 0.9 0.6 +0.72 0.9 0.6 +0.74 0.9 0.6 +0.76 0.9 0.6 +0.78 0.9 0.6 +0.26 0.92 0.6 +0.28 0.92 0.6 +0.3 0.92 0.6 +0.32 0.92 0.6 +0.34 0.92 0.6 +0.36 0.92 0.6 +0.64 0.92 0.6 +0.66 0.92 0.6 +0.68 0.92 0.6 +0.7 0.92 0.6 +0.72 0.92 0.6 +0.74 0.92 0.6 +0.3 0.94 0.6 +0.32 0.94 0.6 +0.34 0.94 0.6 +0.36 0.94 0.6 +0.38 0.94 0.6 +0.4 0.94 0.6 +0.42 0.94 0.6 +0.44 0.94 0.6 +0.46 0.94 0.6 +0.48 0.94 0.6 +0.5 0.94 0.6 +0.52 0.94 0.6 +0.54 0.94 0.6 +0.56 0.94 0.6 +0.58 0.94 0.6 +0.6 0.94 0.6 +0.62 0.94 0.6 +0.64 0.94 0.6 +0.66 0.94 0.6 +0.68 0.94 0.6 +0.7 0.94 0.6 +0.34 0.96 0.6 +0.36 0.96 0.6 +0.38 0.96 0.6 +0.4 0.96 0.6 +0.42 0.96 0.6 +0.44 0.96 0.6 +0.46 0.96 0.6 +0.48 0.96 0.6 +0.5 0.96 0.6 +0.52 0.96 0.6 +0.54 0.96 0.6 +0.56 0.96 0.6 +0.58 0.96 0.6 +0.6 0.96 0.6 +0.62 0.96 0.6 +0.64 0.96 0.6 +0.66 0.96 0.6 +0.42 0.98 0.6 +0.44 0.98 0.6 +0.46 0.98 0.6 +0.48 0.98 0.6 +0.5 0.98 0.6 +0.52 0.98 0.6 +0.54 0.98 0.6 +0.56 0.98 0.6 +0.58 0.98 0.6 +0.44 0.02 0.62 +0.46 0.02 0.62 +0.48 0.02 0.62 +0.5 0.02 0.62 +0.52 0.02 0.62 +0.54 0.02 0.62 +0.56 0.02 0.62 +0.36 0.04 0.62 +0.38 0.04 0.62 +0.4 0.04 0.62 +0.42 0.04 0.62 +0.44 0.04 0.62 +0.46 0.04 0.62 +0.48 0.04 0.62 +0.5 0.04 0.62 +0.52 0.04 0.62 +0.54 0.04 0.62 +0.56 0.04 0.62 +0.58 0.04 0.62 +0.6 0.04 0.62 +0.62 0.04 0.62 +0.64 0.04 0.62 +0.3 0.06 0.62 +0.32 0.06 0.62 +0.34 0.06 0.62 +0.36 0.06 0.62 +0.38 0.06 0.62 +0.4 0.06 0.62 +0.42 0.06 0.62 +0.44 0.06 0.62 +0.46 0.06 0.62 +0.48 0.06 0.62 +0.5 0.06 0.62 +0.52 0.06 0.62 +0.54 0.06 0.62 +0.56 0.06 0.62 +0.58 0.06 0.62 +0.6 0.06 0.62 +0.62 0.06 0.62 +0.64 0.06 0.62 +0.66 0.06 0.62 +0.68 0.06 0.62 +0.7 0.06 0.62 +0.26 0.08 0.62 +0.28 0.08 0.62 +0.3 0.08 0.62 +0.32 0.08 0.62 +0.34 0.08 0.62 +0.36 0.08 0.62 +0.38 0.08 0.62 +0.62 0.08 0.62 +0.64 0.08 0.62 +0.66 0.08 0.62 +0.68 0.08 0.62 +0.7 0.08 0.62 +0.72 0.08 0.62 +0.74 0.08 0.62 +0.24 0.1 0.62 +0.26 0.1 0.62 +0.28 0.1 0.62 +0.3 0.1 0.62 +0.32 0.1 0.62 +0.68 0.1 0.62 +0.7 0.1 0.62 +0.72 0.1 0.62 +0.74 0.1 0.62 +0.76 0.1 0.62 +0.2 0.12 0.62 +0.22 0.12 0.62 +0.24 0.12 0.62 +0.26 0.12 0.62 +0.28 0.12 0.62 +0.72 0.12 0.62 +0.74 0.12 0.62 +0.76 0.12 0.62 +0.78 0.12 0.62 +0.8 0.12 0.62 +0.18 0.14 0.62 +0.2 0.14 0.62 +0.22 0.14 0.62 +0.24 0.14 0.62 +0.76 0.14 0.62 +0.78 0.14 0.62 +0.8 0.14 0.62 +0.82 0.14 0.62 +0.16 0.16 0.62 +0.18 0.16 0.62 +0.2 0.16 0.62 +0.22 0.16 0.62 +0.78 0.16 0.62 +0.8 0.16 0.62 +0.82 0.16 0.62 +0.84 0.16 0.62 +0.14 0.18 0.62 +0.16 0.18 0.62 +0.18 0.18 0.62 +0.2 0.18 0.62 +0.8 0.18 0.62 +0.82 0.18 0.62 +0.84 0.18 0.62 +0.86 0.18 0.62 +0.12 0.2 0.62 +0.14 0.2 0.62 +0.16 0.2 0.62 +0.18 0.2 0.62 +0.82 0.2 0.62 +0.84 0.2 0.62 +0.86 0.2 0.62 +0.88 0.2 0.62 +0.12 0.22 0.62 +0.14 0.22 0.62 +0.16 0.22 0.62 +0.84 0.22 0.62 +0.86 0.22 0.62 +0.88 0.22 0.62 +0.1 0.24 0.62 +0.12 0.24 0.62 +0.14 0.24 0.62 +0.86 0.24 0.62 +0.88 0.24 0.62 +0.9 0.24 0.62 +0.08 0.26 0.62 +0.1 0.26 0.62 +0.12 0.26 0.62 +0.88 0.26 0.62 +0.9 0.26 0.62 +0.92 0.26 0.62 +0.08 0.28 0.62 +0.1 0.28 0.62 +0.12 0.28 0.62 +0.88 0.28 0.62 +0.9 0.28 0.62 +0.92 0.28 0.62 +0.06 0.3 0.62 +0.08 0.3 0.62 +0.1 0.3 0.62 +0.9 0.3 0.62 +0.92 0.3 0.62 +0.94 0.3 0.62 +0.06 0.32 0.62 +0.08 0.32 0.62 +0.1 0.32 0.62 +0.9 0.32 0.62 +0.92 0.32 0.62 +0.94 0.32 0.62 +0.06 0.34 0.62 +0.08 0.34 0.62 +0.92 0.34 0.62 +0.94 0.34 0.62 +0.04 0.36 0.62 +0.06 0.36 0.62 +0.08 0.36 0.62 +0.92 0.36 0.62 +0.94 0.36 0.62 +0.96 0.36 0.62 +0.04 0.38 0.62 +0.06 0.38 0.62 +0.08 0.38 0.62 +0.92 0.38 0.62 +0.94 0.38 0.62 +0.96 0.38 0.62 +0.04 0.4 0.62 +0.06 0.4 0.62 +0.94 0.4 0.62 +0.96 0.4 0.62 +0.04 0.42 0.62 +0.06 0.42 0.62 +0.94 0.42 0.62 +0.96 0.42 0.62 +0.02 0.44 0.62 +0.04 0.44 0.62 +0.06 0.44 0.62 +0.94 0.44 0.62 +0.96 0.44 0.62 +0.98 0.44 0.62 +0.02 0.46 0.62 +0.04 0.46 0.62 +0.06 0.46 0.62 +0.94 0.46 0.62 +0.96 0.46 0.62 +0.98 0.46 0.62 +0.02 0.48 0.62 +0.04 0.48 0.62 +0.06 0.48 0.62 +0.94 0.48 0.62 +0.96 0.48 0.62 +0.98 0.48 0.62 +0.02 0.5 0.62 +0.04 0.5 0.62 +0.06 0.5 0.62 +0.94 0.5 0.62 +0.96 0.5 0.62 +0.98 0.5 0.62 +0.02 0.52 0.62 +0.04 0.52 0.62 +0.06 0.52 0.62 +0.94 0.52 0.62 +0.96 0.52 0.62 +0.98 0.52 0.62 +0.02 0.54 0.62 +0.04 0.54 0.62 +0.06 0.54 0.62 +0.94 0.54 0.62 +0.96 0.54 0.62 +0.98 0.54 0.62 +0.02 0.56 0.62 +0.04 0.56 0.62 +0.06 0.56 0.62 +0.94 0.56 0.62 +0.96 0.56 0.62 +0.98 0.56 0.62 +0.04 0.58 0.62 +0.06 0.58 0.62 +0.94 0.58 0.62 +0.96 0.58 0.62 +0.04 0.6 0.62 +0.06 0.6 0.62 +0.94 0.6 0.62 +0.96 0.6 0.62 +0.04 0.62 0.62 +0.06 0.62 0.62 +0.08 0.62 0.62 +0.92 0.62 0.62 +0.94 0.62 0.62 +0.96 0.62 0.62 +0.04 0.64 0.62 +0.06 0.64 0.62 +0.08 0.64 0.62 +0.92 0.64 0.62 +0.94 0.64 0.62 +0.96 0.64 0.62 +0.06 0.66 0.62 +0.08 0.66 0.62 +0.92 0.66 0.62 +0.94 0.66 0.62 +0.06 0.68 0.62 +0.08 0.68 0.62 +0.1 0.68 0.62 +0.9 0.68 0.62 +0.92 0.68 0.62 +0.94 0.68 0.62 +0.06 0.7 0.62 +0.08 0.7 0.62 +0.1 0.7 0.62 +0.9 0.7 0.62 +0.92 0.7 0.62 +0.94 0.7 0.62 +0.08 0.72 0.62 +0.1 0.72 0.62 +0.12 0.72 0.62 +0.88 0.72 0.62 +0.9 0.72 0.62 +0.92 0.72 0.62 +0.08 0.74 0.62 +0.1 0.74 0.62 +0.12 0.74 0.62 +0.88 0.74 0.62 +0.9 0.74 0.62 +0.92 0.74 0.62 +0.1 0.76 0.62 +0.12 0.76 0.62 +0.14 0.76 0.62 +0.86 0.76 0.62 +0.88 0.76 0.62 +0.9 0.76 0.62 +0.12 0.78 0.62 +0.14 0.78 0.62 +0.16 0.78 0.62 +0.84 0.78 0.62 +0.86 0.78 0.62 +0.88 0.78 0.62 +0.12 0.8 0.62 +0.14 0.8 0.62 +0.16 0.8 0.62 +0.18 0.8 0.62 +0.82 0.8 0.62 +0.84 0.8 0.62 +0.86 0.8 0.62 +0.88 0.8 0.62 +0.14 0.82 0.62 +0.16 0.82 0.62 +0.18 0.82 0.62 +0.2 0.82 0.62 +0.8 0.82 0.62 +0.82 0.82 0.62 +0.84 0.82 0.62 +0.86 0.82 0.62 +0.16 0.84 0.62 +0.18 0.84 0.62 +0.2 0.84 0.62 +0.22 0.84 0.62 +0.78 0.84 0.62 +0.8 0.84 0.62 +0.82 0.84 0.62 +0.84 0.84 0.62 +0.18 0.86 0.62 +0.2 0.86 0.62 +0.22 0.86 0.62 +0.24 0.86 0.62 +0.76 0.86 0.62 +0.78 0.86 0.62 +0.8 0.86 0.62 +0.82 0.86 0.62 +0.2 0.88 0.62 +0.22 0.88 0.62 +0.24 0.88 0.62 +0.26 0.88 0.62 +0.28 0.88 0.62 +0.72 0.88 0.62 +0.74 0.88 0.62 +0.76 0.88 0.62 +0.78 0.88 0.62 +0.8 0.88 0.62 +0.24 0.9 0.62 +0.26 0.9 0.62 +0.28 0.9 0.62 +0.3 0.9 0.62 +0.32 0.9 0.62 +0.68 0.9 0.62 +0.7 0.9 0.62 +0.72 0.9 0.62 +0.74 0.9 0.62 +0.76 0.9 0.62 +0.26 0.92 0.62 +0.28 0.92 0.62 +0.3 0.92 0.62 +0.32 0.92 0.62 +0.34 0.92 0.62 +0.36 0.92 0.62 +0.38 0.92 0.62 +0.62 0.92 0.62 +0.64 0.92 0.62 +0.66 0.92 0.62 +0.68 0.92 0.62 +0.7 0.92 0.62 +0.72 0.92 0.62 +0.74 0.92 0.62 +0.3 0.94 0.62 +0.32 0.94 0.62 +0.34 0.94 0.62 +0.36 0.94 0.62 +0.38 0.94 0.62 +0.4 0.94 0.62 +0.42 0.94 0.62 +0.44 0.94 0.62 +0.46 0.94 0.62 +0.48 0.94 0.62 +0.5 0.94 0.62 +0.52 0.94 0.62 +0.54 0.94 0.62 +0.56 0.94 0.62 +0.58 0.94 0.62 +0.6 0.94 0.62 +0.62 0.94 0.62 +0.64 0.94 0.62 +0.66 0.94 0.62 +0.68 0.94 0.62 +0.7 0.94 0.62 +0.36 0.96 0.62 +0.38 0.96 0.62 +0.4 0.96 0.62 +0.42 0.96 0.62 +0.44 0.96 0.62 +0.46 0.96 0.62 +0.48 0.96 0.62 +0.5 0.96 0.62 +0.52 0.96 0.62 +0.54 0.96 0.62 +0.56 0.96 0.62 +0.58 0.96 0.62 +0.6 0.96 0.62 +0.62 0.96 0.62 +0.64 0.96 0.62 +0.44 0.98 0.62 +0.46 0.98 0.62 +0.48 0.98 0.62 +0.5 0.98 0.62 +0.52 0.98 0.62 +0.54 0.98 0.62 +0.56 0.98 0.62 +0.38 0.04 0.64 +0.4 0.04 0.64 +0.42 0.04 0.64 +0.44 0.04 0.64 +0.46 0.04 0.64 +0.48 0.04 0.64 +0.5 0.04 0.64 +0.52 0.04 0.64 +0.54 0.04 0.64 +0.56 0.04 0.64 +0.58 0.04 0.64 +0.6 0.04 0.64 +0.62 0.04 0.64 +0.32 0.06 0.64 +0.34 0.06 0.64 +0.36 0.06 0.64 +0.38 0.06 0.64 +0.4 0.06 0.64 +0.42 0.06 0.64 +0.44 0.06 0.64 +0.46 0.06 0.64 +0.48 0.06 0.64 +0.5 0.06 0.64 +0.52 0.06 0.64 +0.54 0.06 0.64 +0.56 0.06 0.64 +0.58 0.06 0.64 +0.6 0.06 0.64 +0.62 0.06 0.64 +0.64 0.06 0.64 +0.66 0.06 0.64 +0.68 0.06 0.64 +0.28 0.08 0.64 +0.3 0.08 0.64 +0.32 0.08 0.64 +0.34 0.08 0.64 +0.36 0.08 0.64 +0.38 0.08 0.64 +0.4 0.08 0.64 +0.6 0.08 0.64 +0.62 0.08 0.64 +0.64 0.08 0.64 +0.66 0.08 0.64 +0.68 0.08 0.64 +0.7 0.08 0.64 +0.72 0.08 0.64 +0.24 0.1 0.64 +0.26 0.1 0.64 +0.28 0.1 0.64 +0.3 0.1 0.64 +0.32 0.1 0.64 +0.34 0.1 0.64 +0.66 0.1 0.64 +0.68 0.1 0.64 +0.7 0.1 0.64 +0.72 0.1 0.64 +0.74 0.1 0.64 +0.76 0.1 0.64 +0.22 0.12 0.64 +0.24 0.12 0.64 +0.26 0.12 0.64 +0.28 0.12 0.64 +0.3 0.12 0.64 +0.7 0.12 0.64 +0.72 0.12 0.64 +0.74 0.12 0.64 +0.76 0.12 0.64 +0.78 0.12 0.64 +0.2 0.14 0.64 +0.22 0.14 0.64 +0.24 0.14 0.64 +0.26 0.14 0.64 +0.74 0.14 0.64 +0.76 0.14 0.64 +0.78 0.14 0.64 +0.8 0.14 0.64 +0.18 0.16 0.64 +0.2 0.16 0.64 +0.22 0.16 0.64 +0.24 0.16 0.64 +0.76 0.16 0.64 +0.78 0.16 0.64 +0.8 0.16 0.64 +0.82 0.16 0.64 +0.16 0.18 0.64 +0.18 0.18 0.64 +0.2 0.18 0.64 +0.8 0.18 0.64 +0.82 0.18 0.64 +0.84 0.18 0.64 +0.14 0.2 0.64 +0.16 0.2 0.64 +0.18 0.2 0.64 +0.82 0.2 0.64 +0.84 0.2 0.64 +0.86 0.2 0.64 +0.12 0.22 0.64 +0.14 0.22 0.64 +0.16 0.22 0.64 +0.84 0.22 0.64 +0.86 0.22 0.64 +0.88 0.22 0.64 +0.1 0.24 0.64 +0.12 0.24 0.64 +0.14 0.24 0.64 +0.16 0.24 0.64 +0.84 0.24 0.64 +0.86 0.24 0.64 +0.88 0.24 0.64 +0.9 0.24 0.64 +0.1 0.26 0.64 +0.12 0.26 0.64 +0.14 0.26 0.64 +0.86 0.26 0.64 +0.88 0.26 0.64 +0.9 0.26 0.64 +0.08 0.28 0.64 +0.1 0.28 0.64 +0.12 0.28 0.64 +0.88 0.28 0.64 +0.9 0.28 0.64 +0.92 0.28 0.64 +0.08 0.3 0.64 +0.1 0.3 0.64 +0.12 0.3 0.64 +0.88 0.3 0.64 +0.9 0.3 0.64 +0.92 0.3 0.64 +0.06 0.32 0.64 +0.08 0.32 0.64 +0.1 0.32 0.64 +0.9 0.32 0.64 +0.92 0.32 0.64 +0.94 0.32 0.64 +0.06 0.34 0.64 +0.08 0.34 0.64 +0.1 0.34 0.64 +0.9 0.34 0.64 +0.92 0.34 0.64 +0.94 0.34 0.64 +0.06 0.36 0.64 +0.08 0.36 0.64 +0.92 0.36 0.64 +0.94 0.36 0.64 +0.04 0.38 0.64 +0.06 0.38 0.64 +0.08 0.38 0.64 +0.92 0.38 0.64 +0.94 0.38 0.64 +0.96 0.38 0.64 +0.04 0.4 0.64 +0.06 0.4 0.64 +0.08 0.4 0.64 +0.92 0.4 0.64 +0.94 0.4 0.64 +0.96 0.4 0.64 +0.04 0.42 0.64 +0.06 0.42 0.64 +0.94 0.42 0.64 +0.96 0.42 0.64 +0.04 0.44 0.64 +0.06 0.44 0.64 +0.94 0.44 0.64 +0.96 0.44 0.64 +0.04 0.46 0.64 +0.06 0.46 0.64 +0.94 0.46 0.64 +0.96 0.46 0.64 +0.04 0.48 0.64 +0.06 0.48 0.64 +0.94 0.48 0.64 +0.96 0.48 0.64 +0.04 0.5 0.64 +0.06 0.5 0.64 +0.94 0.5 0.64 +0.96 0.5 0.64 +0.04 0.52 0.64 +0.06 0.52 0.64 +0.94 0.52 0.64 +0.96 0.52 0.64 +0.04 0.54 0.64 +0.06 0.54 0.64 +0.94 0.54 0.64 +0.96 0.54 0.64 +0.04 0.56 0.64 +0.06 0.56 0.64 +0.94 0.56 0.64 +0.96 0.56 0.64 +0.04 0.58 0.64 +0.06 0.58 0.64 +0.94 0.58 0.64 +0.96 0.58 0.64 +0.04 0.6 0.64 +0.06 0.6 0.64 +0.08 0.6 0.64 +0.92 0.6 0.64 +0.94 0.6 0.64 +0.96 0.6 0.64 +0.04 0.62 0.64 +0.06 0.62 0.64 +0.08 0.62 0.64 +0.92 0.62 0.64 +0.94 0.62 0.64 +0.96 0.62 0.64 +0.06 0.64 0.64 +0.08 0.64 0.64 +0.92 0.64 0.64 +0.94 0.64 0.64 +0.06 0.66 0.64 +0.08 0.66 0.64 +0.1 0.66 0.64 +0.9 0.66 0.64 +0.92 0.66 0.64 +0.94 0.66 0.64 +0.06 0.68 0.64 +0.08 0.68 0.64 +0.1 0.68 0.64 +0.9 0.68 0.64 +0.92 0.68 0.64 +0.94 0.68 0.64 +0.08 0.7 0.64 +0.1 0.7 0.64 +0.12 0.7 0.64 +0.88 0.7 0.64 +0.9 0.7 0.64 +0.92 0.7 0.64 +0.08 0.72 0.64 +0.1 0.72 0.64 +0.12 0.72 0.64 +0.88 0.72 0.64 +0.9 0.72 0.64 +0.92 0.72 0.64 +0.1 0.74 0.64 +0.12 0.74 0.64 +0.14 0.74 0.64 +0.86 0.74 0.64 +0.88 0.74 0.64 +0.9 0.74 0.64 +0.1 0.76 0.64 +0.12 0.76 0.64 +0.14 0.76 0.64 +0.16 0.76 0.64 +0.84 0.76 0.64 +0.86 0.76 0.64 +0.88 0.76 0.64 +0.9 0.76 0.64 +0.12 0.78 0.64 +0.14 0.78 0.64 +0.16 0.78 0.64 +0.84 0.78 0.64 +0.86 0.78 0.64 +0.88 0.78 0.64 +0.14 0.8 0.64 +0.16 0.8 0.64 +0.18 0.8 0.64 +0.82 0.8 0.64 +0.84 0.8 0.64 +0.86 0.8 0.64 +0.16 0.82 0.64 +0.18 0.82 0.64 +0.2 0.82 0.64 +0.8 0.82 0.64 +0.82 0.82 0.64 +0.84 0.82 0.64 +0.18 0.84 0.64 +0.2 0.84 0.64 +0.22 0.84 0.64 +0.24 0.84 0.64 +0.76 0.84 0.64 +0.78 0.84 0.64 +0.8 0.84 0.64 +0.82 0.84 0.64 +0.2 0.86 0.64 +0.22 0.86 0.64 +0.24 0.86 0.64 +0.26 0.86 0.64 +0.74 0.86 0.64 +0.76 0.86 0.64 +0.78 0.86 0.64 +0.8 0.86 0.64 +0.22 0.88 0.64 +0.24 0.88 0.64 +0.26 0.88 0.64 +0.28 0.88 0.64 +0.3 0.88 0.64 +0.7 0.88 0.64 +0.72 0.88 0.64 +0.74 0.88 0.64 +0.76 0.88 0.64 +0.78 0.88 0.64 +0.24 0.9 0.64 +0.26 0.9 0.64 +0.28 0.9 0.64 +0.3 0.9 0.64 +0.32 0.9 0.64 +0.34 0.9 0.64 +0.66 0.9 0.64 +0.68 0.9 0.64 +0.7 0.9 0.64 +0.72 0.9 0.64 +0.74 0.9 0.64 +0.76 0.9 0.64 +0.28 0.92 0.64 +0.3 0.92 0.64 +0.32 0.92 0.64 +0.34 0.92 0.64 +0.36 0.92 0.64 +0.38 0.92 0.64 +0.4 0.92 0.64 +0.6 0.92 0.64 +0.62 0.92 0.64 +0.64 0.92 0.64 +0.66 0.92 0.64 +0.68 0.92 0.64 +0.7 0.92 0.64 +0.72 0.92 0.64 +0.32 0.94 0.64 +0.34 0.94 0.64 +0.36 0.94 0.64 +0.38 0.94 0.64 +0.4 0.94 0.64 +0.42 0.94 0.64 +0.44 0.94 0.64 +0.46 0.94 0.64 +0.48 0.94 0.64 +0.5 0.94 0.64 +0.52 0.94 0.64 +0.54 0.94 0.64 +0.56 0.94 0.64 +0.58 0.94 0.64 +0.6 0.94 0.64 +0.62 0.94 0.64 +0.64 0.94 0.64 +0.66 0.94 0.64 +0.68 0.94 0.64 +0.38 0.96 0.64 +0.4 0.96 0.64 +0.42 0.96 0.64 +0.44 0.96 0.64 +0.46 0.96 0.64 +0.48 0.96 0.64 +0.5 0.96 0.64 +0.52 0.96 0.64 +0.54 0.96 0.64 +0.56 0.96 0.64 +0.58 0.96 0.64 +0.6 0.96 0.64 +0.62 0.96 0.64 +0.4 0.04 0.66 +0.42 0.04 0.66 +0.44 0.04 0.66 +0.46 0.04 0.66 +0.48 0.04 0.66 +0.5 0.04 0.66 +0.52 0.04 0.66 +0.54 0.04 0.66 +0.56 0.04 0.66 +0.58 0.04 0.66 +0.6 0.04 0.66 +0.34 0.06 0.66 +0.36 0.06 0.66 +0.38 0.06 0.66 +0.4 0.06 0.66 +0.42 0.06 0.66 +0.44 0.06 0.66 +0.46 0.06 0.66 +0.48 0.06 0.66 +0.5 0.06 0.66 +0.52 0.06 0.66 +0.54 0.06 0.66 +0.56 0.06 0.66 +0.58 0.06 0.66 +0.6 0.06 0.66 +0.62 0.06 0.66 +0.64 0.06 0.66 +0.66 0.06 0.66 +0.3 0.08 0.66 +0.32 0.08 0.66 +0.34 0.08 0.66 +0.36 0.08 0.66 +0.38 0.08 0.66 +0.4 0.08 0.66 +0.42 0.08 0.66 +0.44 0.08 0.66 +0.46 0.08 0.66 +0.54 0.08 0.66 +0.56 0.08 0.66 +0.58 0.08 0.66 +0.6 0.08 0.66 +0.62 0.08 0.66 +0.64 0.08 0.66 +0.66 0.08 0.66 +0.68 0.08 0.66 +0.7 0.08 0.66 +0.26 0.1 0.66 +0.28 0.1 0.66 +0.3 0.1 0.66 +0.32 0.1 0.66 +0.34 0.1 0.66 +0.36 0.1 0.66 +0.64 0.1 0.66 +0.66 0.1 0.66 +0.68 0.1 0.66 +0.7 0.1 0.66 +0.72 0.1 0.66 +0.74 0.1 0.66 +0.22 0.12 0.66 +0.24 0.12 0.66 +0.26 0.12 0.66 +0.28 0.12 0.66 +0.3 0.12 0.66 +0.7 0.12 0.66 +0.72 0.12 0.66 +0.74 0.12 0.66 +0.76 0.12 0.66 +0.78 0.12 0.66 +0.2 0.14 0.66 +0.22 0.14 0.66 +0.24 0.14 0.66 +0.26 0.14 0.66 +0.28 0.14 0.66 +0.72 0.14 0.66 +0.74 0.14 0.66 +0.76 0.14 0.66 +0.78 0.14 0.66 +0.8 0.14 0.66 +0.18 0.16 0.66 +0.2 0.16 0.66 +0.22 0.16 0.66 +0.24 0.16 0.66 +0.76 0.16 0.66 +0.78 0.16 0.66 +0.8 0.16 0.66 +0.82 0.16 0.66 +0.16 0.18 0.66 +0.18 0.18 0.66 +0.2 0.18 0.66 +0.22 0.18 0.66 +0.78 0.18 0.66 +0.8 0.18 0.66 +0.82 0.18 0.66 +0.84 0.18 0.66 +0.14 0.2 0.66 +0.16 0.2 0.66 +0.18 0.2 0.66 +0.2 0.2 0.66 +0.8 0.2 0.66 +0.82 0.2 0.66 +0.84 0.2 0.66 +0.86 0.2 0.66 +0.12 0.22 0.66 +0.14 0.22 0.66 +0.16 0.22 0.66 +0.18 0.22 0.66 +0.82 0.22 0.66 +0.84 0.22 0.66 +0.86 0.22 0.66 +0.88 0.22 0.66 +0.12 0.24 0.66 +0.14 0.24 0.66 +0.16 0.24 0.66 +0.84 0.24 0.66 +0.86 0.24 0.66 +0.88 0.24 0.66 +0.1 0.26 0.66 +0.12 0.26 0.66 +0.14 0.26 0.66 +0.86 0.26 0.66 +0.88 0.26 0.66 +0.9 0.26 0.66 +0.1 0.28 0.66 +0.12 0.28 0.66 +0.14 0.28 0.66 +0.86 0.28 0.66 +0.88 0.28 0.66 +0.9 0.28 0.66 +0.08 0.3 0.66 +0.1 0.3 0.66 +0.12 0.3 0.66 +0.88 0.3 0.66 +0.9 0.3 0.66 +0.92 0.3 0.66 +0.08 0.32 0.66 +0.1 0.32 0.66 +0.9 0.32 0.66 +0.92 0.32 0.66 +0.06 0.34 0.66 +0.08 0.34 0.66 +0.1 0.34 0.66 +0.9 0.34 0.66 +0.92 0.34 0.66 +0.94 0.34 0.66 +0.06 0.36 0.66 +0.08 0.36 0.66 +0.1 0.36 0.66 +0.9 0.36 0.66 +0.92 0.36 0.66 +0.94 0.36 0.66 +0.06 0.38 0.66 +0.08 0.38 0.66 +0.92 0.38 0.66 +0.94 0.38 0.66 +0.04 0.4 0.66 +0.06 0.4 0.66 +0.08 0.4 0.66 +0.92 0.4 0.66 +0.94 0.4 0.66 +0.96 0.4 0.66 +0.04 0.42 0.66 +0.06 0.42 0.66 +0.08 0.42 0.66 +0.92 0.42 0.66 +0.94 0.42 0.66 +0.96 0.42 0.66 +0.04 0.44 0.66 +0.06 0.44 0.66 +0.08 0.44 0.66 +0.92 0.44 0.66 +0.94 0.44 0.66 +0.96 0.44 0.66 +0.04 0.46 0.66 +0.06 0.46 0.66 +0.08 0.46 0.66 +0.92 0.46 0.66 +0.94 0.46 0.66 +0.96 0.46 0.66 +0.04 0.48 0.66 +0.06 0.48 0.66 +0.94 0.48 0.66 +0.96 0.48 0.66 +0.04 0.5 0.66 +0.06 0.5 0.66 +0.94 0.5 0.66 +0.96 0.5 0.66 +0.04 0.52 0.66 +0.06 0.52 0.66 +0.94 0.52 0.66 +0.96 0.52 0.66 +0.04 0.54 0.66 +0.06 0.54 0.66 +0.08 0.54 0.66 +0.92 0.54 0.66 +0.94 0.54 0.66 +0.96 0.54 0.66 +0.04 0.56 0.66 +0.06 0.56 0.66 +0.08 0.56 0.66 +0.92 0.56 0.66 +0.94 0.56 0.66 +0.96 0.56 0.66 +0.04 0.58 0.66 +0.06 0.58 0.66 +0.08 0.58 0.66 +0.92 0.58 0.66 +0.94 0.58 0.66 +0.96 0.58 0.66 +0.04 0.6 0.66 +0.06 0.6 0.66 +0.08 0.6 0.66 +0.92 0.6 0.66 +0.94 0.6 0.66 +0.96 0.6 0.66 +0.06 0.62 0.66 +0.08 0.62 0.66 +0.92 0.62 0.66 +0.94 0.62 0.66 +0.06 0.64 0.66 +0.08 0.64 0.66 +0.1 0.64 0.66 +0.9 0.64 0.66 +0.92 0.64 0.66 +0.94 0.64 0.66 +0.06 0.66 0.66 +0.08 0.66 0.66 +0.1 0.66 0.66 +0.9 0.66 0.66 +0.92 0.66 0.66 +0.94 0.66 0.66 +0.08 0.68 0.66 +0.1 0.68 0.66 +0.9 0.68 0.66 +0.92 0.68 0.66 +0.08 0.7 0.66 +0.1 0.7 0.66 +0.12 0.7 0.66 +0.88 0.7 0.66 +0.9 0.7 0.66 +0.92 0.7 0.66 +0.1 0.72 0.66 +0.12 0.72 0.66 +0.14 0.72 0.66 +0.86 0.72 0.66 +0.88 0.72 0.66 +0.9 0.72 0.66 +0.1 0.74 0.66 +0.12 0.74 0.66 +0.14 0.74 0.66 +0.86 0.74 0.66 +0.88 0.74 0.66 +0.9 0.74 0.66 +0.12 0.76 0.66 +0.14 0.76 0.66 +0.16 0.76 0.66 +0.84 0.76 0.66 +0.86 0.76 0.66 +0.88 0.76 0.66 +0.12 0.78 0.66 +0.14 0.78 0.66 +0.16 0.78 0.66 +0.18 0.78 0.66 +0.82 0.78 0.66 +0.84 0.78 0.66 +0.86 0.78 0.66 +0.88 0.78 0.66 +0.14 0.8 0.66 +0.16 0.8 0.66 +0.18 0.8 0.66 +0.2 0.8 0.66 +0.8 0.8 0.66 +0.82 0.8 0.66 +0.84 0.8 0.66 +0.86 0.8 0.66 +0.16 0.82 0.66 +0.18 0.82 0.66 +0.2 0.82 0.66 +0.22 0.82 0.66 +0.78 0.82 0.66 +0.8 0.82 0.66 +0.82 0.82 0.66 +0.84 0.82 0.66 +0.18 0.84 0.66 +0.2 0.84 0.66 +0.22 0.84 0.66 +0.24 0.84 0.66 +0.76 0.84 0.66 +0.78 0.84 0.66 +0.8 0.84 0.66 +0.82 0.84 0.66 +0.2 0.86 0.66 +0.22 0.86 0.66 +0.24 0.86 0.66 +0.26 0.86 0.66 +0.28 0.86 0.66 +0.72 0.86 0.66 +0.74 0.86 0.66 +0.76 0.86 0.66 +0.78 0.86 0.66 +0.8 0.86 0.66 +0.22 0.88 0.66 +0.24 0.88 0.66 +0.26 0.88 0.66 +0.28 0.88 0.66 +0.3 0.88 0.66 +0.7 0.88 0.66 +0.72 0.88 0.66 +0.74 0.88 0.66 +0.76 0.88 0.66 +0.78 0.88 0.66 +0.26 0.9 0.66 +0.28 0.9 0.66 +0.3 0.9 0.66 +0.32 0.9 0.66 +0.34 0.9 0.66 +0.36 0.9 0.66 +0.64 0.9 0.66 +0.66 0.9 0.66 +0.68 0.9 0.66 +0.7 0.9 0.66 +0.72 0.9 0.66 +0.74 0.9 0.66 +0.3 0.92 0.66 +0.32 0.92 0.66 +0.34 0.92 0.66 +0.36 0.92 0.66 +0.38 0.92 0.66 +0.4 0.92 0.66 +0.42 0.92 0.66 +0.44 0.92 0.66 +0.46 0.92 0.66 +0.54 0.92 0.66 +0.56 0.92 0.66 +0.58 0.92 0.66 +0.6 0.92 0.66 +0.62 0.92 0.66 +0.64 0.92 0.66 +0.66 0.92 0.66 +0.68 0.92 0.66 +0.7 0.92 0.66 +0.34 0.94 0.66 +0.36 0.94 0.66 +0.38 0.94 0.66 +0.4 0.94 0.66 +0.42 0.94 0.66 +0.44 0.94 0.66 +0.46 0.94 0.66 +0.48 0.94 0.66 +0.5 0.94 0.66 +0.52 0.94 0.66 +0.54 0.94 0.66 +0.56 0.94 0.66 +0.58 0.94 0.66 +0.6 0.94 0.66 +0.62 0.94 0.66 +0.64 0.94 0.66 +0.66 0.94 0.66 +0.4 0.96 0.66 +0.42 0.96 0.66 +0.44 0.96 0.66 +0.46 0.96 0.66 +0.48 0.96 0.66 +0.5 0.96 0.66 +0.52 0.96 0.66 +0.54 0.96 0.66 +0.56 0.96 0.66 +0.58 0.96 0.66 +0.6 0.96 0.66 +0.44 0.04 0.68 +0.46 0.04 0.68 +0.48 0.04 0.68 +0.5 0.04 0.68 +0.52 0.04 0.68 +0.54 0.04 0.68 +0.56 0.04 0.68 +0.36 0.06 0.68 +0.38 0.06 0.68 +0.4 0.06 0.68 +0.42 0.06 0.68 +0.44 0.06 0.68 +0.46 0.06 0.68 +0.48 0.06 0.68 +0.5 0.06 0.68 +0.52 0.06 0.68 +0.54 0.06 0.68 +0.56 0.06 0.68 +0.58 0.06 0.68 +0.6 0.06 0.68 +0.62 0.06 0.68 +0.64 0.06 0.68 +0.3 0.08 0.68 +0.32 0.08 0.68 +0.34 0.08 0.68 +0.36 0.08 0.68 +0.38 0.08 0.68 +0.4 0.08 0.68 +0.42 0.08 0.68 +0.44 0.08 0.68 +0.46 0.08 0.68 +0.48 0.08 0.68 +0.5 0.08 0.68 +0.52 0.08 0.68 +0.54 0.08 0.68 +0.56 0.08 0.68 +0.58 0.08 0.68 +0.6 0.08 0.68 +0.62 0.08 0.68 +0.64 0.08 0.68 +0.66 0.08 0.68 +0.68 0.08 0.68 +0.7 0.08 0.68 +0.28 0.1 0.68 +0.3 0.1 0.68 +0.32 0.1 0.68 +0.34 0.1 0.68 +0.36 0.1 0.68 +0.38 0.1 0.68 +0.62 0.1 0.68 +0.64 0.1 0.68 +0.66 0.1 0.68 +0.68 0.1 0.68 +0.7 0.1 0.68 +0.72 0.1 0.68 +0.24 0.12 0.68 +0.26 0.12 0.68 +0.28 0.12 0.68 +0.3 0.12 0.68 +0.32 0.12 0.68 +0.68 0.12 0.68 +0.7 0.12 0.68 +0.72 0.12 0.68 +0.74 0.12 0.68 +0.76 0.12 0.68 +0.22 0.14 0.68 +0.24 0.14 0.68 +0.26 0.14 0.68 +0.28 0.14 0.68 +0.72 0.14 0.68 +0.74 0.14 0.68 +0.76 0.14 0.68 +0.78 0.14 0.68 +0.2 0.16 0.68 +0.22 0.16 0.68 +0.24 0.16 0.68 +0.26 0.16 0.68 +0.74 0.16 0.68 +0.76 0.16 0.68 +0.78 0.16 0.68 +0.8 0.16 0.68 +0.18 0.18 0.68 +0.2 0.18 0.68 +0.22 0.18 0.68 +0.78 0.18 0.68 +0.8 0.18 0.68 +0.82 0.18 0.68 +0.16 0.2 0.68 +0.18 0.2 0.68 +0.2 0.2 0.68 +0.8 0.2 0.68 +0.82 0.2 0.68 +0.84 0.2 0.68 +0.14 0.22 0.68 +0.16 0.22 0.68 +0.18 0.22 0.68 +0.82 0.22 0.68 +0.84 0.22 0.68 +0.86 0.22 0.68 +0.12 0.24 0.68 +0.14 0.24 0.68 +0.16 0.24 0.68 +0.84 0.24 0.68 +0.86 0.24 0.68 +0.88 0.24 0.68 +0.12 0.26 0.68 +0.14 0.26 0.68 +0.16 0.26 0.68 +0.84 0.26 0.68 +0.86 0.26 0.68 +0.88 0.26 0.68 +0.1 0.28 0.68 +0.12 0.28 0.68 +0.14 0.28 0.68 +0.86 0.28 0.68 +0.88 0.28 0.68 +0.9 0.28 0.68 +0.08 0.3 0.68 +0.1 0.3 0.68 +0.12 0.3 0.68 +0.88 0.3 0.68 +0.9 0.3 0.68 +0.92 0.3 0.68 +0.08 0.32 0.68 +0.1 0.32 0.68 +0.12 0.32 0.68 +0.88 0.32 0.68 +0.9 0.32 0.68 +0.92 0.32 0.68 +0.08 0.34 0.68 +0.1 0.34 0.68 +0.9 0.34 0.68 +0.92 0.34 0.68 +0.06 0.36 0.68 +0.08 0.36 0.68 +0.1 0.36 0.68 +0.9 0.36 0.68 +0.92 0.36 0.68 +0.94 0.36 0.68 +0.06 0.38 0.68 +0.08 0.38 0.68 +0.1 0.38 0.68 +0.9 0.38 0.68 +0.92 0.38 0.68 +0.94 0.38 0.68 +0.06 0.4 0.68 +0.08 0.4 0.68 +0.92 0.4 0.68 +0.94 0.4 0.68 +0.06 0.42 0.68 +0.08 0.42 0.68 +0.92 0.42 0.68 +0.94 0.42 0.68 +0.04 0.44 0.68 +0.06 0.44 0.68 +0.08 0.44 0.68 +0.92 0.44 0.68 +0.94 0.44 0.68 +0.96 0.44 0.68 +0.04 0.46 0.68 +0.06 0.46 0.68 +0.08 0.46 0.68 +0.92 0.46 0.68 +0.94 0.46 0.68 +0.96 0.46 0.68 +0.04 0.48 0.68 +0.06 0.48 0.68 +0.08 0.48 0.68 +0.92 0.48 0.68 +0.94 0.48 0.68 +0.96 0.48 0.68 +0.04 0.5 0.68 +0.06 0.5 0.68 +0.08 0.5 0.68 +0.92 0.5 0.68 +0.94 0.5 0.68 +0.96 0.5 0.68 +0.04 0.52 0.68 +0.06 0.52 0.68 +0.08 0.52 0.68 +0.92 0.52 0.68 +0.94 0.52 0.68 +0.96 0.52 0.68 +0.04 0.54 0.68 +0.06 0.54 0.68 +0.08 0.54 0.68 +0.92 0.54 0.68 +0.94 0.54 0.68 +0.96 0.54 0.68 +0.04 0.56 0.68 +0.06 0.56 0.68 +0.08 0.56 0.68 +0.92 0.56 0.68 +0.94 0.56 0.68 +0.96 0.56 0.68 +0.06 0.58 0.68 +0.08 0.58 0.68 +0.92 0.58 0.68 +0.94 0.58 0.68 +0.06 0.6 0.68 +0.08 0.6 0.68 +0.92 0.6 0.68 +0.94 0.6 0.68 +0.06 0.62 0.68 +0.08 0.62 0.68 +0.1 0.62 0.68 +0.9 0.62 0.68 +0.92 0.62 0.68 +0.94 0.62 0.68 +0.06 0.64 0.68 +0.08 0.64 0.68 +0.1 0.64 0.68 +0.9 0.64 0.68 +0.92 0.64 0.68 +0.94 0.64 0.68 +0.08 0.66 0.68 +0.1 0.66 0.68 +0.9 0.66 0.68 +0.92 0.66 0.68 +0.08 0.68 0.68 +0.1 0.68 0.68 +0.12 0.68 0.68 +0.88 0.68 0.68 +0.9 0.68 0.68 +0.92 0.68 0.68 +0.08 0.7 0.68 +0.1 0.7 0.68 +0.12 0.7 0.68 +0.88 0.7 0.68 +0.9 0.7 0.68 +0.92 0.7 0.68 +0.1 0.72 0.68 +0.12 0.72 0.68 +0.14 0.72 0.68 +0.86 0.72 0.68 +0.88 0.72 0.68 +0.9 0.72 0.68 +0.12 0.74 0.68 +0.14 0.74 0.68 +0.16 0.74 0.68 +0.84 0.74 0.68 +0.86 0.74 0.68 +0.88 0.74 0.68 +0.12 0.76 0.68 +0.14 0.76 0.68 +0.16 0.76 0.68 +0.84 0.76 0.68 +0.86 0.76 0.68 +0.88 0.76 0.68 +0.14 0.78 0.68 +0.16 0.78 0.68 +0.18 0.78 0.68 +0.82 0.78 0.68 +0.84 0.78 0.68 +0.86 0.78 0.68 +0.16 0.8 0.68 +0.18 0.8 0.68 +0.2 0.8 0.68 +0.8 0.8 0.68 +0.82 0.8 0.68 +0.84 0.8 0.68 +0.18 0.82 0.68 +0.2 0.82 0.68 +0.22 0.82 0.68 +0.78 0.82 0.68 +0.8 0.82 0.68 +0.82 0.82 0.68 +0.2 0.84 0.68 +0.22 0.84 0.68 +0.24 0.84 0.68 +0.26 0.84 0.68 +0.74 0.84 0.68 +0.76 0.84 0.68 +0.78 0.84 0.68 +0.8 0.84 0.68 +0.22 0.86 0.68 +0.24 0.86 0.68 +0.26 0.86 0.68 +0.28 0.86 0.68 +0.72 0.86 0.68 +0.74 0.86 0.68 +0.76 0.86 0.68 +0.78 0.86 0.68 +0.24 0.88 0.68 +0.26 0.88 0.68 +0.28 0.88 0.68 +0.3 0.88 0.68 +0.32 0.88 0.68 +0.68 0.88 0.68 +0.7 0.88 0.68 +0.72 0.88 0.68 +0.74 0.88 0.68 +0.76 0.88 0.68 +0.28 0.9 0.68 +0.3 0.9 0.68 +0.32 0.9 0.68 +0.34 0.9 0.68 +0.36 0.9 0.68 +0.38 0.9 0.68 +0.62 0.9 0.68 +0.64 0.9 0.68 +0.66 0.9 0.68 +0.68 0.9 0.68 +0.7 0.9 0.68 +0.72 0.9 0.68 +0.3 0.92 0.68 +0.32 0.92 0.68 +0.34 0.92 0.68 +0.36 0.92 0.68 +0.38 0.92 0.68 +0.4 0.92 0.68 +0.42 0.92 0.68 +0.44 0.92 0.68 +0.46 0.92 0.68 +0.48 0.92 0.68 +0.5 0.92 0.68 +0.52 0.92 0.68 +0.54 0.92 0.68 +0.56 0.92 0.68 +0.58 0.92 0.68 +0.6 0.92 0.68 +0.62 0.92 0.68 +0.64 0.92 0.68 +0.66 0.92 0.68 +0.68 0.92 0.68 +0.7 0.92 0.68 +0.36 0.94 0.68 +0.38 0.94 0.68 +0.4 0.94 0.68 +0.42 0.94 0.68 +0.44 0.94 0.68 +0.46 0.94 0.68 +0.48 0.94 0.68 +0.5 0.94 0.68 +0.52 0.94 0.68 +0.54 0.94 0.68 +0.56 0.94 0.68 +0.58 0.94 0.68 +0.6 0.94 0.68 +0.62 0.94 0.68 +0.64 0.94 0.68 +0.44 0.96 0.68 +0.46 0.96 0.68 +0.48 0.96 0.68 +0.5 0.96 0.68 +0.52 0.96 0.68 +0.54 0.96 0.68 +0.56 0.96 0.68 +0.38 0.06 0.7 +0.4 0.06 0.7 +0.42 0.06 0.7 +0.44 0.06 0.7 +0.46 0.06 0.7 +0.48 0.06 0.7 +0.5 0.06 0.7 +0.52 0.06 0.7 +0.54 0.06 0.7 +0.56 0.06 0.7 +0.58 0.06 0.7 +0.6 0.06 0.7 +0.62 0.06 0.7 +0.32 0.08 0.7 +0.34 0.08 0.7 +0.36 0.08 0.7 +0.38 0.08 0.7 +0.4 0.08 0.7 +0.42 0.08 0.7 +0.44 0.08 0.7 +0.46 0.08 0.7 +0.48 0.08 0.7 +0.5 0.08 0.7 +0.52 0.08 0.7 +0.54 0.08 0.7 +0.56 0.08 0.7 +0.58 0.08 0.7 +0.6 0.08 0.7 +0.62 0.08 0.7 +0.64 0.08 0.7 +0.66 0.08 0.7 +0.68 0.08 0.7 +0.28 0.1 0.7 +0.3 0.1 0.7 +0.32 0.1 0.7 +0.34 0.1 0.7 +0.36 0.1 0.7 +0.38 0.1 0.7 +0.4 0.1 0.7 +0.42 0.1 0.7 +0.44 0.1 0.7 +0.56 0.1 0.7 +0.58 0.1 0.7 +0.6 0.1 0.7 +0.62 0.1 0.7 +0.64 0.1 0.7 +0.66 0.1 0.7 +0.68 0.1 0.7 +0.7 0.1 0.7 +0.72 0.1 0.7 +0.26 0.12 0.7 +0.28 0.12 0.7 +0.3 0.12 0.7 +0.32 0.12 0.7 +0.34 0.12 0.7 +0.36 0.12 0.7 +0.64 0.12 0.7 +0.66 0.12 0.7 +0.68 0.12 0.7 +0.7 0.12 0.7 +0.72 0.12 0.7 +0.74 0.12 0.7 +0.22 0.14 0.7 +0.24 0.14 0.7 +0.26 0.14 0.7 +0.28 0.14 0.7 +0.3 0.14 0.7 +0.7 0.14 0.7 +0.72 0.14 0.7 +0.74 0.14 0.7 +0.76 0.14 0.7 +0.78 0.14 0.7 +0.2 0.16 0.7 +0.22 0.16 0.7 +0.24 0.16 0.7 +0.26 0.16 0.7 +0.28 0.16 0.7 +0.72 0.16 0.7 +0.74 0.16 0.7 +0.76 0.16 0.7 +0.78 0.16 0.7 +0.8 0.16 0.7 +0.18 0.18 0.7 +0.2 0.18 0.7 +0.22 0.18 0.7 +0.24 0.18 0.7 +0.76 0.18 0.7 +0.78 0.18 0.7 +0.8 0.18 0.7 +0.82 0.18 0.7 +0.16 0.2 0.7 +0.18 0.2 0.7 +0.2 0.2 0.7 +0.22 0.2 0.7 +0.78 0.2 0.7 +0.8 0.2 0.7 +0.82 0.2 0.7 +0.84 0.2 0.7 +0.14 0.22 0.7 +0.16 0.22 0.7 +0.18 0.22 0.7 +0.2 0.22 0.7 +0.8 0.22 0.7 +0.82 0.22 0.7 +0.84 0.22 0.7 +0.86 0.22 0.7 +0.14 0.24 0.7 +0.16 0.24 0.7 +0.18 0.24 0.7 +0.82 0.24 0.7 +0.84 0.24 0.7 +0.86 0.24 0.7 +0.12 0.26 0.7 +0.14 0.26 0.7 +0.16 0.26 0.7 +0.84 0.26 0.7 +0.86 0.26 0.7 +0.88 0.26 0.7 +0.1 0.28 0.7 +0.12 0.28 0.7 +0.14 0.28 0.7 +0.16 0.28 0.7 +0.84 0.28 0.7 +0.86 0.28 0.7 +0.88 0.28 0.7 +0.9 0.28 0.7 +0.1 0.3 0.7 +0.12 0.3 0.7 +0.14 0.3 0.7 +0.86 0.3 0.7 +0.88 0.3 0.7 +0.9 0.3 0.7 +0.08 0.32 0.7 +0.1 0.32 0.7 +0.12 0.32 0.7 +0.88 0.32 0.7 +0.9 0.32 0.7 +0.92 0.32 0.7 +0.08 0.34 0.7 +0.1 0.34 0.7 +0.12 0.34 0.7 +0.88 0.34 0.7 +0.9 0.34 0.7 +0.92 0.34 0.7 +0.08 0.36 0.7 +0.1 0.36 0.7 +0.12 0.36 0.7 +0.88 0.36 0.7 +0.9 0.36 0.7 +0.92 0.36 0.7 +0.06 0.38 0.7 +0.08 0.38 0.7 +0.1 0.38 0.7 +0.9 0.38 0.7 +0.92 0.38 0.7 +0.94 0.38 0.7 +0.06 0.4 0.7 +0.08 0.4 0.7 +0.1 0.4 0.7 +0.9 0.4 0.7 +0.92 0.4 0.7 +0.94 0.4 0.7 +0.06 0.42 0.7 +0.08 0.42 0.7 +0.1 0.42 0.7 +0.9 0.42 0.7 +0.92 0.42 0.7 +0.94 0.42 0.7 +0.06 0.44 0.7 +0.08 0.44 0.7 +0.1 0.44 0.7 +0.9 0.44 0.7 +0.92 0.44 0.7 +0.94 0.44 0.7 +0.06 0.46 0.7 +0.08 0.46 0.7 +0.92 0.46 0.7 +0.94 0.46 0.7 +0.06 0.48 0.7 +0.08 0.48 0.7 +0.92 0.48 0.7 +0.94 0.48 0.7 +0.06 0.5 0.7 +0.08 0.5 0.7 +0.92 0.5 0.7 +0.94 0.5 0.7 +0.06 0.52 0.7 +0.08 0.52 0.7 +0.92 0.52 0.7 +0.94 0.52 0.7 +0.06 0.54 0.7 +0.08 0.54 0.7 +0.92 0.54 0.7 +0.94 0.54 0.7 +0.06 0.56 0.7 +0.08 0.56 0.7 +0.1 0.56 0.7 +0.9 0.56 0.7 +0.92 0.56 0.7 +0.94 0.56 0.7 +0.06 0.58 0.7 +0.08 0.58 0.7 +0.1 0.58 0.7 +0.9 0.58 0.7 +0.92 0.58 0.7 +0.94 0.58 0.7 +0.06 0.6 0.7 +0.08 0.6 0.7 +0.1 0.6 0.7 +0.9 0.6 0.7 +0.92 0.6 0.7 +0.94 0.6 0.7 +0.06 0.62 0.7 +0.08 0.62 0.7 +0.1 0.62 0.7 +0.9 0.62 0.7 +0.92 0.62 0.7 +0.94 0.62 0.7 +0.08 0.64 0.7 +0.1 0.64 0.7 +0.12 0.64 0.7 +0.88 0.64 0.7 +0.9 0.64 0.7 +0.92 0.64 0.7 +0.08 0.66 0.7 +0.1 0.66 0.7 +0.12 0.66 0.7 +0.88 0.66 0.7 +0.9 0.66 0.7 +0.92 0.66 0.7 +0.08 0.68 0.7 +0.1 0.68 0.7 +0.12 0.68 0.7 +0.88 0.68 0.7 +0.9 0.68 0.7 +0.92 0.68 0.7 +0.1 0.7 0.7 +0.12 0.7 0.7 +0.14 0.7 0.7 +0.86 0.7 0.7 +0.88 0.7 0.7 +0.9 0.7 0.7 +0.1 0.72 0.7 +0.12 0.72 0.7 +0.14 0.72 0.7 +0.16 0.72 0.7 +0.84 0.72 0.7 +0.86 0.72 0.7 +0.88 0.72 0.7 +0.9 0.72 0.7 +0.12 0.74 0.7 +0.14 0.74 0.7 +0.16 0.74 0.7 +0.84 0.74 0.7 +0.86 0.74 0.7 +0.88 0.74 0.7 +0.14 0.76 0.7 +0.16 0.76 0.7 +0.18 0.76 0.7 +0.82 0.76 0.7 +0.84 0.76 0.7 +0.86 0.76 0.7 +0.14 0.78 0.7 +0.16 0.78 0.7 +0.18 0.78 0.7 +0.2 0.78 0.7 +0.8 0.78 0.7 +0.82 0.78 0.7 +0.84 0.78 0.7 +0.86 0.78 0.7 +0.16 0.8 0.7 +0.18 0.8 0.7 +0.2 0.8 0.7 +0.22 0.8 0.7 +0.78 0.8 0.7 +0.8 0.8 0.7 +0.82 0.8 0.7 +0.84 0.8 0.7 +0.18 0.82 0.7 +0.2 0.82 0.7 +0.22 0.82 0.7 +0.24 0.82 0.7 +0.76 0.82 0.7 +0.78 0.82 0.7 +0.8 0.82 0.7 +0.82 0.82 0.7 +0.2 0.84 0.7 +0.22 0.84 0.7 +0.24 0.84 0.7 +0.26 0.84 0.7 +0.28 0.84 0.7 +0.72 0.84 0.7 +0.74 0.84 0.7 +0.76 0.84 0.7 +0.78 0.84 0.7 +0.8 0.84 0.7 +0.22 0.86 0.7 +0.24 0.86 0.7 +0.26 0.86 0.7 +0.28 0.86 0.7 +0.3 0.86 0.7 +0.7 0.86 0.7 +0.72 0.86 0.7 +0.74 0.86 0.7 +0.76 0.86 0.7 +0.78 0.86 0.7 +0.26 0.88 0.7 +0.28 0.88 0.7 +0.3 0.88 0.7 +0.32 0.88 0.7 +0.34 0.88 0.7 +0.36 0.88 0.7 +0.64 0.88 0.7 +0.66 0.88 0.7 +0.68 0.88 0.7 +0.7 0.88 0.7 +0.72 0.88 0.7 +0.74 0.88 0.7 +0.28 0.9 0.7 +0.3 0.9 0.7 +0.32 0.9 0.7 +0.34 0.9 0.7 +0.36 0.9 0.7 +0.38 0.9 0.7 +0.4 0.9 0.7 +0.42 0.9 0.7 +0.44 0.9 0.7 +0.56 0.9 0.7 +0.58 0.9 0.7 +0.6 0.9 0.7 +0.62 0.9 0.7 +0.64 0.9 0.7 +0.66 0.9 0.7 +0.68 0.9 0.7 +0.7 0.9 0.7 +0.72 0.9 0.7 +0.32 0.92 0.7 +0.34 0.92 0.7 +0.36 0.92 0.7 +0.38 0.92 0.7 +0.4 0.92 0.7 +0.42 0.92 0.7 +0.44 0.92 0.7 +0.46 0.92 0.7 +0.48 0.92 0.7 +0.5 0.92 0.7 +0.52 0.92 0.7 +0.54 0.92 0.7 +0.56 0.92 0.7 +0.58 0.92 0.7 +0.6 0.92 0.7 +0.62 0.92 0.7 +0.64 0.92 0.7 +0.66 0.92 0.7 +0.68 0.92 0.7 +0.38 0.94 0.7 +0.4 0.94 0.7 +0.42 0.94 0.7 +0.44 0.94 0.7 +0.46 0.94 0.7 +0.48 0.94 0.7 +0.5 0.94 0.7 +0.52 0.94 0.7 +0.54 0.94 0.7 +0.56 0.94 0.7 +0.58 0.94 0.7 +0.6 0.94 0.7 +0.62 0.94 0.7 +0.42 0.06 0.72 +0.44 0.06 0.72 +0.46 0.06 0.72 +0.48 0.06 0.72 +0.5 0.06 0.72 +0.52 0.06 0.72 +0.54 0.06 0.72 +0.56 0.06 0.72 +0.58 0.06 0.72 +0.36 0.08 0.72 +0.38 0.08 0.72 +0.4 0.08 0.72 +0.42 0.08 0.72 +0.44 0.08 0.72 +0.46 0.08 0.72 +0.48 0.08 0.72 +0.5 0.08 0.72 +0.52 0.08 0.72 +0.54 0.08 0.72 +0.56 0.08 0.72 +0.58 0.08 0.72 +0.6 0.08 0.72 +0.62 0.08 0.72 +0.64 0.08 0.72 +0.3 0.1 0.72 +0.32 0.1 0.72 +0.34 0.1 0.72 +0.36 0.1 0.72 +0.38 0.1 0.72 +0.4 0.1 0.72 +0.42 0.1 0.72 +0.44 0.1 0.72 +0.46 0.1 0.72 +0.48 0.1 0.72 +0.5 0.1 0.72 +0.52 0.1 0.72 +0.54 0.1 0.72 +0.56 0.1 0.72 +0.58 0.1 0.72 +0.6 0.1 0.72 +0.62 0.1 0.72 +0.64 0.1 0.72 +0.66 0.1 0.72 +0.68 0.1 0.72 +0.7 0.1 0.72 +0.28 0.12 0.72 +0.3 0.12 0.72 +0.32 0.12 0.72 +0.34 0.12 0.72 +0.36 0.12 0.72 +0.38 0.12 0.72 +0.4 0.12 0.72 +0.6 0.12 0.72 +0.62 0.12 0.72 +0.64 0.12 0.72 +0.66 0.12 0.72 +0.68 0.12 0.72 +0.7 0.12 0.72 +0.72 0.12 0.72 +0.24 0.14 0.72 +0.26 0.14 0.72 +0.28 0.14 0.72 +0.3 0.14 0.72 +0.32 0.14 0.72 +0.34 0.14 0.72 +0.66 0.14 0.72 +0.68 0.14 0.72 +0.7 0.14 0.72 +0.72 0.14 0.72 +0.74 0.14 0.72 +0.76 0.14 0.72 +0.22 0.16 0.72 +0.24 0.16 0.72 +0.26 0.16 0.72 +0.28 0.16 0.72 +0.3 0.16 0.72 +0.7 0.16 0.72 +0.72 0.16 0.72 +0.74 0.16 0.72 +0.76 0.16 0.72 +0.78 0.16 0.72 +0.2 0.18 0.72 +0.22 0.18 0.72 +0.24 0.18 0.72 +0.26 0.18 0.72 +0.74 0.18 0.72 +0.76 0.18 0.72 +0.78 0.18 0.72 +0.8 0.18 0.72 +0.18 0.2 0.72 +0.2 0.2 0.72 +0.22 0.2 0.72 +0.24 0.2 0.72 +0.76 0.2 0.72 +0.78 0.2 0.72 +0.8 0.2 0.72 +0.82 0.2 0.72 +0.16 0.22 0.72 +0.18 0.22 0.72 +0.2 0.22 0.72 +0.22 0.22 0.72 +0.78 0.22 0.72 +0.8 0.22 0.72 +0.82 0.22 0.72 +0.84 0.22 0.72 +0.14 0.24 0.72 +0.16 0.24 0.72 +0.18 0.24 0.72 +0.2 0.24 0.72 +0.8 0.24 0.72 +0.82 0.24 0.72 +0.84 0.24 0.72 +0.86 0.24 0.72 +0.14 0.26 0.72 +0.16 0.26 0.72 +0.18 0.26 0.72 +0.82 0.26 0.72 +0.84 0.26 0.72 +0.86 0.26 0.72 +0.12 0.28 0.72 +0.14 0.28 0.72 +0.16 0.28 0.72 +0.84 0.28 0.72 +0.86 0.28 0.72 +0.88 0.28 0.72 +0.1 0.3 0.72 +0.12 0.3 0.72 +0.14 0.3 0.72 +0.16 0.3 0.72 +0.84 0.3 0.72 +0.86 0.3 0.72 +0.88 0.3 0.72 +0.9 0.3 0.72 +0.1 0.32 0.72 +0.12 0.32 0.72 +0.14 0.32 0.72 +0.86 0.32 0.72 +0.88 0.32 0.72 +0.9 0.32 0.72 +0.1 0.34 0.72 +0.12 0.34 0.72 +0.14 0.34 0.72 +0.86 0.34 0.72 +0.88 0.34 0.72 +0.9 0.34 0.72 +0.08 0.36 0.72 +0.1 0.36 0.72 +0.12 0.36 0.72 +0.88 0.36 0.72 +0.9 0.36 0.72 +0.92 0.36 0.72 +0.08 0.38 0.72 +0.1 0.38 0.72 +0.12 0.38 0.72 +0.88 0.38 0.72 +0.9 0.38 0.72 +0.92 0.38 0.72 +0.08 0.4 0.72 +0.1 0.4 0.72 +0.12 0.4 0.72 +0.88 0.4 0.72 +0.9 0.4 0.72 +0.92 0.4 0.72 +0.06 0.42 0.72 +0.08 0.42 0.72 +0.1 0.42 0.72 +0.9 0.42 0.72 +0.92 0.42 0.72 +0.94 0.42 0.72 +0.06 0.44 0.72 +0.08 0.44 0.72 +0.1 0.44 0.72 +0.9 0.44 0.72 +0.92 0.44 0.72 +0.94 0.44 0.72 +0.06 0.46 0.72 +0.08 0.46 0.72 +0.1 0.46 0.72 +0.9 0.46 0.72 +0.92 0.46 0.72 +0.94 0.46 0.72 +0.06 0.48 0.72 +0.08 0.48 0.72 +0.1 0.48 0.72 +0.9 0.48 0.72 +0.92 0.48 0.72 +0.94 0.48 0.72 +0.06 0.5 0.72 +0.08 0.5 0.72 +0.1 0.5 0.72 +0.9 0.5 0.72 +0.92 0.5 0.72 +0.94 0.5 0.72 +0.06 0.52 0.72 +0.08 0.52 0.72 +0.1 0.52 0.72 +0.9 0.52 0.72 +0.92 0.52 0.72 +0.94 0.52 0.72 +0.06 0.54 0.72 +0.08 0.54 0.72 +0.1 0.54 0.72 +0.9 0.54 0.72 +0.92 0.54 0.72 +0.94 0.54 0.72 +0.06 0.56 0.72 +0.08 0.56 0.72 +0.1 0.56 0.72 +0.9 0.56 0.72 +0.92 0.56 0.72 +0.94 0.56 0.72 +0.06 0.58 0.72 +0.08 0.58 0.72 +0.1 0.58 0.72 +0.9 0.58 0.72 +0.92 0.58 0.72 +0.94 0.58 0.72 +0.08 0.6 0.72 +0.1 0.6 0.72 +0.12 0.6 0.72 +0.88 0.6 0.72 +0.9 0.6 0.72 +0.92 0.6 0.72 +0.08 0.62 0.72 +0.1 0.62 0.72 +0.12 0.62 0.72 +0.88 0.62 0.72 +0.9 0.62 0.72 +0.92 0.62 0.72 +0.08 0.64 0.72 +0.1 0.64 0.72 +0.12 0.64 0.72 +0.88 0.64 0.72 +0.9 0.64 0.72 +0.92 0.64 0.72 +0.1 0.66 0.72 +0.12 0.66 0.72 +0.14 0.66 0.72 +0.86 0.66 0.72 +0.88 0.66 0.72 +0.9 0.66 0.72 +0.1 0.68 0.72 +0.12 0.68 0.72 +0.14 0.68 0.72 +0.86 0.68 0.72 +0.88 0.68 0.72 +0.9 0.68 0.72 +0.1 0.7 0.72 +0.12 0.7 0.72 +0.14 0.7 0.72 +0.16 0.7 0.72 +0.84 0.7 0.72 +0.86 0.7 0.72 +0.88 0.7 0.72 +0.9 0.7 0.72 +0.12 0.72 0.72 +0.14 0.72 0.72 +0.16 0.72 0.72 +0.84 0.72 0.72 +0.86 0.72 0.72 +0.88 0.72 0.72 +0.14 0.74 0.72 +0.16 0.74 0.72 +0.18 0.74 0.72 +0.82 0.74 0.72 +0.84 0.74 0.72 +0.86 0.74 0.72 +0.14 0.76 0.72 +0.16 0.76 0.72 +0.18 0.76 0.72 +0.2 0.76 0.72 +0.8 0.76 0.72 +0.82 0.76 0.72 +0.84 0.76 0.72 +0.86 0.76 0.72 +0.16 0.78 0.72 +0.18 0.78 0.72 +0.2 0.78 0.72 +0.22 0.78 0.72 +0.78 0.78 0.72 +0.8 0.78 0.72 +0.82 0.78 0.72 +0.84 0.78 0.72 +0.18 0.8 0.72 +0.2 0.8 0.72 +0.22 0.8 0.72 +0.24 0.8 0.72 +0.76 0.8 0.72 +0.78 0.8 0.72 +0.8 0.8 0.72 +0.82 0.8 0.72 +0.2 0.82 0.72 +0.22 0.82 0.72 +0.24 0.82 0.72 +0.26 0.82 0.72 +0.74 0.82 0.72 +0.76 0.82 0.72 +0.78 0.82 0.72 +0.8 0.82 0.72 +0.22 0.84 0.72 +0.24 0.84 0.72 +0.26 0.84 0.72 +0.28 0.84 0.72 +0.3 0.84 0.72 +0.7 0.84 0.72 +0.72 0.84 0.72 +0.74 0.84 0.72 +0.76 0.84 0.72 +0.78 0.84 0.72 +0.24 0.86 0.72 +0.26 0.86 0.72 +0.28 0.86 0.72 +0.3 0.86 0.72 +0.32 0.86 0.72 +0.34 0.86 0.72 +0.66 0.86 0.72 +0.68 0.86 0.72 +0.7 0.86 0.72 +0.72 0.86 0.72 +0.74 0.86 0.72 +0.76 0.86 0.72 +0.28 0.88 0.72 +0.3 0.88 0.72 +0.32 0.88 0.72 +0.34 0.88 0.72 +0.36 0.88 0.72 +0.38 0.88 0.72 +0.4 0.88 0.72 +0.6 0.88 0.72 +0.62 0.88 0.72 +0.64 0.88 0.72 +0.66 0.88 0.72 +0.68 0.88 0.72 +0.7 0.88 0.72 +0.72 0.88 0.72 +0.3 0.9 0.72 +0.32 0.9 0.72 +0.34 0.9 0.72 +0.36 0.9 0.72 +0.38 0.9 0.72 +0.4 0.9 0.72 +0.42 0.9 0.72 +0.44 0.9 0.72 +0.46 0.9 0.72 +0.48 0.9 0.72 +0.5 0.9 0.72 +0.52 0.9 0.72 +0.54 0.9 0.72 +0.56 0.9 0.72 +0.58 0.9 0.72 +0.6 0.9 0.72 +0.62 0.9 0.72 +0.64 0.9 0.72 +0.66 0.9 0.72 +0.68 0.9 0.72 +0.7 0.9 0.72 +0.36 0.92 0.72 +0.38 0.92 0.72 +0.4 0.92 0.72 +0.42 0.92 0.72 +0.44 0.92 0.72 +0.46 0.92 0.72 +0.48 0.92 0.72 +0.5 0.92 0.72 +0.52 0.92 0.72 +0.54 0.92 0.72 +0.56 0.92 0.72 +0.58 0.92 0.72 +0.6 0.92 0.72 +0.62 0.92 0.72 +0.64 0.92 0.72 +0.42 0.94 0.72 +0.44 0.94 0.72 +0.46 0.94 0.72 +0.48 0.94 0.72 +0.5 0.94 0.72 +0.52 0.94 0.72 +0.54 0.94 0.72 +0.56 0.94 0.72 +0.58 0.94 0.72 +0.38 0.08 0.74 +0.4 0.08 0.74 +0.42 0.08 0.74 +0.44 0.08 0.74 +0.46 0.08 0.74 +0.48 0.08 0.74 +0.5 0.08 0.74 +0.52 0.08 0.74 +0.54 0.08 0.74 +0.56 0.08 0.74 +0.58 0.08 0.74 +0.6 0.08 0.74 +0.62 0.08 0.74 +0.34 0.1 0.74 +0.36 0.1 0.74 +0.38 0.1 0.74 +0.4 0.1 0.74 +0.42 0.1 0.74 +0.44 0.1 0.74 +0.46 0.1 0.74 +0.48 0.1 0.74 +0.5 0.1 0.74 +0.52 0.1 0.74 +0.54 0.1 0.74 +0.56 0.1 0.74 +0.58 0.1 0.74 +0.6 0.1 0.74 +0.62 0.1 0.74 +0.64 0.1 0.74 +0.66 0.1 0.74 +0.3 0.12 0.74 +0.32 0.12 0.74 +0.34 0.12 0.74 +0.36 0.12 0.74 +0.38 0.12 0.74 +0.4 0.12 0.74 +0.42 0.12 0.74 +0.44 0.12 0.74 +0.46 0.12 0.74 +0.54 0.12 0.74 +0.56 0.12 0.74 +0.58 0.12 0.74 +0.6 0.12 0.74 +0.62 0.12 0.74 +0.64 0.12 0.74 +0.66 0.12 0.74 +0.68 0.12 0.74 +0.7 0.12 0.74 +0.26 0.14 0.74 +0.28 0.14 0.74 +0.3 0.14 0.74 +0.32 0.14 0.74 +0.34 0.14 0.74 +0.36 0.14 0.74 +0.64 0.14 0.74 +0.66 0.14 0.74 +0.68 0.14 0.74 +0.7 0.14 0.74 +0.72 0.14 0.74 +0.74 0.14 0.74 +0.24 0.16 0.74 +0.26 0.16 0.74 +0.28 0.16 0.74 +0.3 0.16 0.74 +0.32 0.16 0.74 +0.68 0.16 0.74 +0.7 0.16 0.74 +0.72 0.16 0.74 +0.74 0.16 0.74 +0.76 0.16 0.74 +0.22 0.18 0.74 +0.24 0.18 0.74 +0.26 0.18 0.74 +0.28 0.18 0.74 +0.72 0.18 0.74 +0.74 0.18 0.74 +0.76 0.18 0.74 +0.78 0.18 0.74 +0.2 0.2 0.74 +0.22 0.2 0.74 +0.24 0.2 0.74 +0.26 0.2 0.74 +0.74 0.2 0.74 +0.76 0.2 0.74 +0.78 0.2 0.74 +0.8 0.2 0.74 +0.18 0.22 0.74 +0.2 0.22 0.74 +0.22 0.22 0.74 +0.24 0.22 0.74 +0.76 0.22 0.74 +0.78 0.22 0.74 +0.8 0.22 0.74 +0.82 0.22 0.74 +0.16 0.24 0.74 +0.18 0.24 0.74 +0.2 0.24 0.74 +0.22 0.24 0.74 +0.78 0.24 0.74 +0.8 0.24 0.74 +0.82 0.24 0.74 +0.84 0.24 0.74 +0.14 0.26 0.74 +0.16 0.26 0.74 +0.18 0.26 0.74 +0.2 0.26 0.74 +0.8 0.26 0.74 +0.82 0.26 0.74 +0.84 0.26 0.74 +0.86 0.26 0.74 +0.14 0.28 0.74 +0.16 0.28 0.74 +0.18 0.28 0.74 +0.82 0.28 0.74 +0.84 0.28 0.74 +0.86 0.28 0.74 +0.12 0.3 0.74 +0.14 0.3 0.74 +0.16 0.3 0.74 +0.84 0.3 0.74 +0.86 0.3 0.74 +0.88 0.3 0.74 +0.12 0.32 0.74 +0.14 0.32 0.74 +0.16 0.32 0.74 +0.84 0.32 0.74 +0.86 0.32 0.74 +0.88 0.32 0.74 +0.1 0.34 0.74 +0.12 0.34 0.74 +0.14 0.34 0.74 +0.86 0.34 0.74 +0.88 0.34 0.74 +0.9 0.34 0.74 +0.1 0.36 0.74 +0.12 0.36 0.74 +0.14 0.36 0.74 +0.86 0.36 0.74 +0.88 0.36 0.74 +0.9 0.36 0.74 +0.08 0.38 0.74 +0.1 0.38 0.74 +0.12 0.38 0.74 +0.88 0.38 0.74 +0.9 0.38 0.74 +0.92 0.38 0.74 +0.08 0.4 0.74 +0.1 0.4 0.74 +0.12 0.4 0.74 +0.88 0.4 0.74 +0.9 0.4 0.74 +0.92 0.4 0.74 +0.08 0.42 0.74 +0.1 0.42 0.74 +0.12 0.42 0.74 +0.88 0.42 0.74 +0.9 0.42 0.74 +0.92 0.42 0.74 +0.08 0.44 0.74 +0.1 0.44 0.74 +0.12 0.44 0.74 +0.88 0.44 0.74 +0.9 0.44 0.74 +0.92 0.44 0.74 +0.08 0.46 0.74 +0.1 0.46 0.74 +0.12 0.46 0.74 +0.88 0.46 0.74 +0.9 0.46 0.74 +0.92 0.46 0.74 +0.08 0.48 0.74 +0.1 0.48 0.74 +0.9 0.48 0.74 +0.92 0.48 0.74 +0.08 0.5 0.74 +0.1 0.5 0.74 +0.9 0.5 0.74 +0.92 0.5 0.74 +0.08 0.52 0.74 +0.1 0.52 0.74 +0.9 0.52 0.74 +0.92 0.52 0.74 +0.08 0.54 0.74 +0.1 0.54 0.74 +0.12 0.54 0.74 +0.88 0.54 0.74 +0.9 0.54 0.74 +0.92 0.54 0.74 +0.08 0.56 0.74 +0.1 0.56 0.74 +0.12 0.56 0.74 +0.88 0.56 0.74 +0.9 0.56 0.74 +0.92 0.56 0.74 +0.08 0.58 0.74 +0.1 0.58 0.74 +0.12 0.58 0.74 +0.88 0.58 0.74 +0.9 0.58 0.74 +0.92 0.58 0.74 +0.08 0.6 0.74 +0.1 0.6 0.74 +0.12 0.6 0.74 +0.88 0.6 0.74 +0.9 0.6 0.74 +0.92 0.6 0.74 +0.08 0.62 0.74 +0.1 0.62 0.74 +0.12 0.62 0.74 +0.88 0.62 0.74 +0.9 0.62 0.74 +0.92 0.62 0.74 +0.1 0.64 0.74 +0.12 0.64 0.74 +0.14 0.64 0.74 +0.86 0.64 0.74 +0.88 0.64 0.74 +0.9 0.64 0.74 +0.1 0.66 0.74 +0.12 0.66 0.74 +0.14 0.66 0.74 +0.86 0.66 0.74 +0.88 0.66 0.74 +0.9 0.66 0.74 +0.12 0.68 0.74 +0.14 0.68 0.74 +0.16 0.68 0.74 +0.84 0.68 0.74 +0.86 0.68 0.74 +0.88 0.68 0.74 +0.12 0.7 0.74 +0.14 0.7 0.74 +0.16 0.7 0.74 +0.84 0.7 0.74 +0.86 0.7 0.74 +0.88 0.7 0.74 +0.14 0.72 0.74 +0.16 0.72 0.74 +0.18 0.72 0.74 +0.82 0.72 0.74 +0.84 0.72 0.74 +0.86 0.72 0.74 +0.14 0.74 0.74 +0.16 0.74 0.74 +0.18 0.74 0.74 +0.2 0.74 0.74 +0.8 0.74 0.74 +0.82 0.74 0.74 +0.84 0.74 0.74 +0.86 0.74 0.74 +0.16 0.76 0.74 +0.18 0.76 0.74 +0.2 0.76 0.74 +0.22 0.76 0.74 +0.78 0.76 0.74 +0.8 0.76 0.74 +0.82 0.76 0.74 +0.84 0.76 0.74 +0.18 0.78 0.74 +0.2 0.78 0.74 +0.22 0.78 0.74 +0.24 0.78 0.74 +0.76 0.78 0.74 +0.78 0.78 0.74 +0.8 0.78 0.74 +0.82 0.78 0.74 +0.2 0.8 0.74 +0.22 0.8 0.74 +0.24 0.8 0.74 +0.26 0.8 0.74 +0.74 0.8 0.74 +0.76 0.8 0.74 +0.78 0.8 0.74 +0.8 0.8 0.74 +0.22 0.82 0.74 +0.24 0.82 0.74 +0.26 0.82 0.74 +0.28 0.82 0.74 +0.72 0.82 0.74 +0.74 0.82 0.74 +0.76 0.82 0.74 +0.78 0.82 0.74 +0.24 0.84 0.74 +0.26 0.84 0.74 +0.28 0.84 0.74 +0.3 0.84 0.74 +0.32 0.84 0.74 +0.68 0.84 0.74 +0.7 0.84 0.74 +0.72 0.84 0.74 +0.74 0.84 0.74 +0.76 0.84 0.74 +0.26 0.86 0.74 +0.28 0.86 0.74 +0.3 0.86 0.74 +0.32 0.86 0.74 +0.34 0.86 0.74 +0.36 0.86 0.74 +0.64 0.86 0.74 +0.66 0.86 0.74 +0.68 0.86 0.74 +0.7 0.86 0.74 +0.72 0.86 0.74 +0.74 0.86 0.74 +0.3 0.88 0.74 +0.32 0.88 0.74 +0.34 0.88 0.74 +0.36 0.88 0.74 +0.38 0.88 0.74 +0.4 0.88 0.74 +0.42 0.88 0.74 +0.44 0.88 0.74 +0.46 0.88 0.74 +0.54 0.88 0.74 +0.56 0.88 0.74 +0.58 0.88 0.74 +0.6 0.88 0.74 +0.62 0.88 0.74 +0.64 0.88 0.74 +0.66 0.88 0.74 +0.68 0.88 0.74 +0.7 0.88 0.74 +0.34 0.9 0.74 +0.36 0.9 0.74 +0.38 0.9 0.74 +0.4 0.9 0.74 +0.42 0.9 0.74 +0.44 0.9 0.74 +0.46 0.9 0.74 +0.48 0.9 0.74 +0.5 0.9 0.74 +0.52 0.9 0.74 +0.54 0.9 0.74 +0.56 0.9 0.74 +0.58 0.9 0.74 +0.6 0.9 0.74 +0.62 0.9 0.74 +0.64 0.9 0.74 +0.66 0.9 0.74 +0.38 0.92 0.74 +0.4 0.92 0.74 +0.42 0.92 0.74 +0.44 0.92 0.74 +0.46 0.92 0.74 +0.48 0.92 0.74 +0.5 0.92 0.74 +0.52 0.92 0.74 +0.54 0.92 0.74 +0.56 0.92 0.74 +0.58 0.92 0.74 +0.6 0.92 0.74 +0.62 0.92 0.74 +0.44 0.08 0.76 +0.46 0.08 0.76 +0.48 0.08 0.76 +0.5 0.08 0.76 +0.52 0.08 0.76 +0.54 0.08 0.76 +0.56 0.08 0.76 +0.36 0.1 0.76 +0.38 0.1 0.76 +0.4 0.1 0.76 +0.42 0.1 0.76 +0.44 0.1 0.76 +0.46 0.1 0.76 +0.48 0.1 0.76 +0.5 0.1 0.76 +0.52 0.1 0.76 +0.54 0.1 0.76 +0.56 0.1 0.76 +0.58 0.1 0.76 +0.6 0.1 0.76 +0.62 0.1 0.76 +0.64 0.1 0.76 +0.32 0.12 0.76 +0.34 0.12 0.76 +0.36 0.12 0.76 +0.38 0.12 0.76 +0.4 0.12 0.76 +0.42 0.12 0.76 +0.44 0.12 0.76 +0.46 0.12 0.76 +0.48 0.12 0.76 +0.5 0.12 0.76 +0.52 0.12 0.76 +0.54 0.12 0.76 +0.56 0.12 0.76 +0.58 0.12 0.76 +0.6 0.12 0.76 +0.62 0.12 0.76 +0.64 0.12 0.76 +0.66 0.12 0.76 +0.68 0.12 0.76 +0.28 0.14 0.76 +0.3 0.14 0.76 +0.32 0.14 0.76 +0.34 0.14 0.76 +0.36 0.14 0.76 +0.38 0.14 0.76 +0.4 0.14 0.76 +0.42 0.14 0.76 +0.58 0.14 0.76 +0.6 0.14 0.76 +0.62 0.14 0.76 +0.64 0.14 0.76 +0.66 0.14 0.76 +0.68 0.14 0.76 +0.7 0.14 0.76 +0.72 0.14 0.76 +0.26 0.16 0.76 +0.28 0.16 0.76 +0.3 0.16 0.76 +0.32 0.16 0.76 +0.34 0.16 0.76 +0.36 0.16 0.76 +0.64 0.16 0.76 +0.66 0.16 0.76 +0.68 0.16 0.76 +0.7 0.16 0.76 +0.72 0.16 0.76 +0.74 0.16 0.76 +0.22 0.18 0.76 +0.24 0.18 0.76 +0.26 0.18 0.76 +0.28 0.18 0.76 +0.3 0.18 0.76 +0.7 0.18 0.76 +0.72 0.18 0.76 +0.74 0.18 0.76 +0.76 0.18 0.76 +0.78 0.18 0.76 +0.2 0.2 0.76 +0.22 0.2 0.76 +0.24 0.2 0.76 +0.26 0.2 0.76 +0.28 0.2 0.76 +0.72 0.2 0.76 +0.74 0.2 0.76 +0.76 0.2 0.76 +0.78 0.2 0.76 +0.8 0.2 0.76 +0.18 0.22 0.76 +0.2 0.22 0.76 +0.22 0.22 0.76 +0.24 0.22 0.76 +0.26 0.22 0.76 +0.74 0.22 0.76 +0.76 0.22 0.76 +0.78 0.22 0.76 +0.8 0.22 0.76 +0.82 0.22 0.76 +0.18 0.24 0.76 +0.2 0.24 0.76 +0.22 0.24 0.76 +0.24 0.24 0.76 +0.76 0.24 0.76 +0.78 0.24 0.76 +0.8 0.24 0.76 +0.82 0.24 0.76 +0.16 0.26 0.76 +0.18 0.26 0.76 +0.2 0.26 0.76 +0.22 0.26 0.76 +0.78 0.26 0.76 +0.8 0.26 0.76 +0.82 0.26 0.76 +0.84 0.26 0.76 +0.14 0.28 0.76 +0.16 0.28 0.76 +0.18 0.28 0.76 +0.2 0.28 0.76 +0.8 0.28 0.76 +0.82 0.28 0.76 +0.84 0.28 0.76 +0.86 0.28 0.76 +0.14 0.3 0.76 +0.16 0.3 0.76 +0.18 0.3 0.76 +0.82 0.3 0.76 +0.84 0.3 0.76 +0.86 0.3 0.76 +0.12 0.32 0.76 +0.14 0.32 0.76 +0.16 0.32 0.76 +0.84 0.32 0.76 +0.86 0.32 0.76 +0.88 0.32 0.76 +0.12 0.34 0.76 +0.14 0.34 0.76 +0.16 0.34 0.76 +0.84 0.34 0.76 +0.86 0.34 0.76 +0.88 0.34 0.76 +0.1 0.36 0.76 +0.12 0.36 0.76 +0.14 0.36 0.76 +0.16 0.36 0.76 +0.84 0.36 0.76 +0.86 0.36 0.76 +0.88 0.36 0.76 +0.9 0.36 0.76 +0.1 0.38 0.76 +0.12 0.38 0.76 +0.14 0.38 0.76 +0.86 0.38 0.76 +0.88 0.38 0.76 +0.9 0.38 0.76 +0.1 0.4 0.76 +0.12 0.4 0.76 +0.14 0.4 0.76 +0.86 0.4 0.76 +0.88 0.4 0.76 +0.9 0.4 0.76 +0.1 0.42 0.76 +0.12 0.42 0.76 +0.14 0.42 0.76 +0.86 0.42 0.76 +0.88 0.42 0.76 +0.9 0.42 0.76 +0.08 0.44 0.76 +0.1 0.44 0.76 +0.12 0.44 0.76 +0.88 0.44 0.76 +0.9 0.44 0.76 +0.92 0.44 0.76 +0.08 0.46 0.76 +0.1 0.46 0.76 +0.12 0.46 0.76 +0.88 0.46 0.76 +0.9 0.46 0.76 +0.92 0.46 0.76 +0.08 0.48 0.76 +0.1 0.48 0.76 +0.12 0.48 0.76 +0.88 0.48 0.76 +0.9 0.48 0.76 +0.92 0.48 0.76 +0.08 0.5 0.76 +0.1 0.5 0.76 +0.12 0.5 0.76 +0.88 0.5 0.76 +0.9 0.5 0.76 +0.92 0.5 0.76 +0.08 0.52 0.76 +0.1 0.52 0.76 +0.12 0.52 0.76 +0.88 0.52 0.76 +0.9 0.52 0.76 +0.92 0.52 0.76 +0.08 0.54 0.76 +0.1 0.54 0.76 +0.12 0.54 0.76 +0.88 0.54 0.76 +0.9 0.54 0.76 +0.92 0.54 0.76 +0.08 0.56 0.76 +0.1 0.56 0.76 +0.12 0.56 0.76 +0.88 0.56 0.76 +0.9 0.56 0.76 +0.92 0.56 0.76 +0.1 0.58 0.76 +0.12 0.58 0.76 +0.14 0.58 0.76 +0.86 0.58 0.76 +0.88 0.58 0.76 +0.9 0.58 0.76 +0.1 0.6 0.76 +0.12 0.6 0.76 +0.14 0.6 0.76 +0.86 0.6 0.76 +0.88 0.6 0.76 +0.9 0.6 0.76 +0.1 0.62 0.76 +0.12 0.62 0.76 +0.14 0.62 0.76 +0.86 0.62 0.76 +0.88 0.62 0.76 +0.9 0.62 0.76 +0.1 0.64 0.76 +0.12 0.64 0.76 +0.14 0.64 0.76 +0.16 0.64 0.76 +0.84 0.64 0.76 +0.86 0.64 0.76 +0.88 0.64 0.76 +0.9 0.64 0.76 +0.12 0.66 0.76 +0.14 0.66 0.76 +0.16 0.66 0.76 +0.84 0.66 0.76 +0.86 0.66 0.76 +0.88 0.66 0.76 +0.12 0.68 0.76 +0.14 0.68 0.76 +0.16 0.68 0.76 +0.84 0.68 0.76 +0.86 0.68 0.76 +0.88 0.68 0.76 +0.14 0.7 0.76 +0.16 0.7 0.76 +0.18 0.7 0.76 +0.82 0.7 0.76 +0.84 0.7 0.76 +0.86 0.7 0.76 +0.14 0.72 0.76 +0.16 0.72 0.76 +0.18 0.72 0.76 +0.2 0.72 0.76 +0.8 0.72 0.76 +0.82 0.72 0.76 +0.84 0.72 0.76 +0.86 0.72 0.76 +0.16 0.74 0.76 +0.18 0.74 0.76 +0.2 0.74 0.76 +0.22 0.74 0.76 +0.78 0.74 0.76 +0.8 0.74 0.76 +0.82 0.74 0.76 +0.84 0.74 0.76 +0.18 0.76 0.76 +0.2 0.76 0.76 +0.22 0.76 0.76 +0.24 0.76 0.76 +0.76 0.76 0.76 +0.78 0.76 0.76 +0.8 0.76 0.76 +0.82 0.76 0.76 +0.18 0.78 0.76 +0.2 0.78 0.76 +0.22 0.78 0.76 +0.24 0.78 0.76 +0.26 0.78 0.76 +0.74 0.78 0.76 +0.76 0.78 0.76 +0.78 0.78 0.76 +0.8 0.78 0.76 +0.82 0.78 0.76 +0.2 0.8 0.76 +0.22 0.8 0.76 +0.24 0.8 0.76 +0.26 0.8 0.76 +0.28 0.8 0.76 +0.72 0.8 0.76 +0.74 0.8 0.76 +0.76 0.8 0.76 +0.78 0.8 0.76 +0.8 0.8 0.76 +0.22 0.82 0.76 +0.24 0.82 0.76 +0.26 0.82 0.76 +0.28 0.82 0.76 +0.3 0.82 0.76 +0.7 0.82 0.76 +0.72 0.82 0.76 +0.74 0.82 0.76 +0.76 0.82 0.76 +0.78 0.82 0.76 +0.26 0.84 0.76 +0.28 0.84 0.76 +0.3 0.84 0.76 +0.32 0.84 0.76 +0.34 0.84 0.76 +0.36 0.84 0.76 +0.64 0.84 0.76 +0.66 0.84 0.76 +0.68 0.84 0.76 +0.7 0.84 0.76 +0.72 0.84 0.76 +0.74 0.84 0.76 +0.28 0.86 0.76 +0.3 0.86 0.76 +0.32 0.86 0.76 +0.34 0.86 0.76 +0.36 0.86 0.76 +0.38 0.86 0.76 +0.4 0.86 0.76 +0.42 0.86 0.76 +0.58 0.86 0.76 +0.6 0.86 0.76 +0.62 0.86 0.76 +0.64 0.86 0.76 +0.66 0.86 0.76 +0.68 0.86 0.76 +0.7 0.86 0.76 +0.72 0.86 0.76 +0.32 0.88 0.76 +0.34 0.88 0.76 +0.36 0.88 0.76 +0.38 0.88 0.76 +0.4 0.88 0.76 +0.42 0.88 0.76 +0.44 0.88 0.76 +0.46 0.88 0.76 +0.48 0.88 0.76 +0.5 0.88 0.76 +0.52 0.88 0.76 +0.54 0.88 0.76 +0.56 0.88 0.76 +0.58 0.88 0.76 +0.6 0.88 0.76 +0.62 0.88 0.76 +0.64 0.88 0.76 +0.66 0.88 0.76 +0.68 0.88 0.76 +0.36 0.9 0.76 +0.38 0.9 0.76 +0.4 0.9 0.76 +0.42 0.9 0.76 +0.44 0.9 0.76 +0.46 0.9 0.76 +0.48 0.9 0.76 +0.5 0.9 0.76 +0.52 0.9 0.76 +0.54 0.9 0.76 +0.56 0.9 0.76 +0.58 0.9 0.76 +0.6 0.9 0.76 +0.62 0.9 0.76 +0.64 0.9 0.76 +0.44 0.92 0.76 +0.46 0.92 0.76 +0.48 0.92 0.76 +0.5 0.92 0.76 +0.52 0.92 0.76 +0.54 0.92 0.76 +0.56 0.92 0.76 +0.4 0.1 0.78 +0.42 0.1 0.78 +0.44 0.1 0.78 +0.46 0.1 0.78 +0.48 0.1 0.78 +0.5 0.1 0.78 +0.52 0.1 0.78 +0.54 0.1 0.78 +0.56 0.1 0.78 +0.58 0.1 0.78 +0.6 0.1 0.78 +0.34 0.12 0.78 +0.36 0.12 0.78 +0.38 0.12 0.78 +0.4 0.12 0.78 +0.42 0.12 0.78 +0.44 0.12 0.78 +0.46 0.12 0.78 +0.48 0.12 0.78 +0.5 0.12 0.78 +0.52 0.12 0.78 +0.54 0.12 0.78 +0.56 0.12 0.78 +0.58 0.12 0.78 +0.6 0.12 0.78 +0.62 0.12 0.78 +0.64 0.12 0.78 +0.66 0.12 0.78 +0.3 0.14 0.78 +0.32 0.14 0.78 +0.34 0.14 0.78 +0.36 0.14 0.78 +0.38 0.14 0.78 +0.4 0.14 0.78 +0.42 0.14 0.78 +0.44 0.14 0.78 +0.46 0.14 0.78 +0.48 0.14 0.78 +0.5 0.14 0.78 +0.52 0.14 0.78 +0.54 0.14 0.78 +0.56 0.14 0.78 +0.58 0.14 0.78 +0.6 0.14 0.78 +0.62 0.14 0.78 +0.64 0.14 0.78 +0.66 0.14 0.78 +0.68 0.14 0.78 +0.7 0.14 0.78 +0.28 0.16 0.78 +0.3 0.16 0.78 +0.32 0.16 0.78 +0.34 0.16 0.78 +0.36 0.16 0.78 +0.38 0.16 0.78 +0.4 0.16 0.78 +0.6 0.16 0.78 +0.62 0.16 0.78 +0.64 0.16 0.78 +0.66 0.16 0.78 +0.68 0.16 0.78 +0.7 0.16 0.78 +0.72 0.16 0.78 +0.24 0.18 0.78 +0.26 0.18 0.78 +0.28 0.18 0.78 +0.3 0.18 0.78 +0.32 0.18 0.78 +0.34 0.18 0.78 +0.66 0.18 0.78 +0.68 0.18 0.78 +0.7 0.18 0.78 +0.72 0.18 0.78 +0.74 0.18 0.78 +0.76 0.18 0.78 +0.22 0.2 0.78 +0.24 0.2 0.78 +0.26 0.2 0.78 +0.28 0.2 0.78 +0.3 0.2 0.78 +0.7 0.2 0.78 +0.72 0.2 0.78 +0.74 0.2 0.78 +0.76 0.2 0.78 +0.78 0.2 0.78 +0.2 0.22 0.78 +0.22 0.22 0.78 +0.24 0.22 0.78 +0.26 0.22 0.78 +0.28 0.22 0.78 +0.72 0.22 0.78 +0.74 0.22 0.78 +0.76 0.22 0.78 +0.78 0.22 0.78 +0.8 0.22 0.78 +0.18 0.24 0.78 +0.2 0.24 0.78 +0.22 0.24 0.78 +0.24 0.24 0.78 +0.26 0.24 0.78 +0.74 0.24 0.78 +0.76 0.24 0.78 +0.78 0.24 0.78 +0.8 0.24 0.78 +0.82 0.24 0.78 +0.18 0.26 0.78 +0.2 0.26 0.78 +0.22 0.26 0.78 +0.24 0.26 0.78 +0.76 0.26 0.78 +0.78 0.26 0.78 +0.8 0.26 0.78 +0.82 0.26 0.78 +0.16 0.28 0.78 +0.18 0.28 0.78 +0.2 0.28 0.78 +0.22 0.28 0.78 +0.78 0.28 0.78 +0.8 0.28 0.78 +0.82 0.28 0.78 +0.84 0.28 0.78 +0.14 0.3 0.78 +0.16 0.3 0.78 +0.18 0.3 0.78 +0.2 0.3 0.78 +0.8 0.3 0.78 +0.82 0.3 0.78 +0.84 0.3 0.78 +0.86 0.3 0.78 +0.14 0.32 0.78 +0.16 0.32 0.78 +0.18 0.32 0.78 +0.82 0.32 0.78 +0.84 0.32 0.78 +0.86 0.32 0.78 +0.12 0.34 0.78 +0.14 0.34 0.78 +0.16 0.34 0.78 +0.18 0.34 0.78 +0.82 0.34 0.78 +0.84 0.34 0.78 +0.86 0.34 0.78 +0.88 0.34 0.78 +0.12 0.36 0.78 +0.14 0.36 0.78 +0.16 0.36 0.78 +0.84 0.36 0.78 +0.86 0.36 0.78 +0.88 0.36 0.78 +0.12 0.38 0.78 +0.14 0.38 0.78 +0.16 0.38 0.78 +0.84 0.38 0.78 +0.86 0.38 0.78 +0.88 0.38 0.78 +0.1 0.4 0.78 +0.12 0.4 0.78 +0.14 0.4 0.78 +0.16 0.4 0.78 +0.84 0.4 0.78 +0.86 0.4 0.78 +0.88 0.4 0.78 +0.9 0.4 0.78 +0.1 0.42 0.78 +0.12 0.42 0.78 +0.14 0.42 0.78 +0.86 0.42 0.78 +0.88 0.42 0.78 +0.9 0.42 0.78 +0.1 0.44 0.78 +0.12 0.44 0.78 +0.14 0.44 0.78 +0.86 0.44 0.78 +0.88 0.44 0.78 +0.9 0.44 0.78 +0.1 0.46 0.78 +0.12 0.46 0.78 +0.14 0.46 0.78 +0.86 0.46 0.78 +0.88 0.46 0.78 +0.9 0.46 0.78 +0.1 0.48 0.78 +0.12 0.48 0.78 +0.14 0.48 0.78 +0.86 0.48 0.78 +0.88 0.48 0.78 +0.9 0.48 0.78 +0.1 0.5 0.78 +0.12 0.5 0.78 +0.14 0.5 0.78 +0.86 0.5 0.78 +0.88 0.5 0.78 +0.9 0.5 0.78 +0.1 0.52 0.78 +0.12 0.52 0.78 +0.14 0.52 0.78 +0.86 0.52 0.78 +0.88 0.52 0.78 +0.9 0.52 0.78 +0.1 0.54 0.78 +0.12 0.54 0.78 +0.14 0.54 0.78 +0.86 0.54 0.78 +0.88 0.54 0.78 +0.9 0.54 0.78 +0.1 0.56 0.78 +0.12 0.56 0.78 +0.14 0.56 0.78 +0.86 0.56 0.78 +0.88 0.56 0.78 +0.9 0.56 0.78 +0.1 0.58 0.78 +0.12 0.58 0.78 +0.14 0.58 0.78 +0.86 0.58 0.78 +0.88 0.58 0.78 +0.9 0.58 0.78 +0.1 0.6 0.78 +0.12 0.6 0.78 +0.14 0.6 0.78 +0.16 0.6 0.78 +0.84 0.6 0.78 +0.86 0.6 0.78 +0.88 0.6 0.78 +0.9 0.6 0.78 +0.12 0.62 0.78 +0.14 0.62 0.78 +0.16 0.62 0.78 +0.84 0.62 0.78 +0.86 0.62 0.78 +0.88 0.62 0.78 +0.12 0.64 0.78 +0.14 0.64 0.78 +0.16 0.64 0.78 +0.84 0.64 0.78 +0.86 0.64 0.78 +0.88 0.64 0.78 +0.12 0.66 0.78 +0.14 0.66 0.78 +0.16 0.66 0.78 +0.18 0.66 0.78 +0.82 0.66 0.78 +0.84 0.66 0.78 +0.86 0.66 0.78 +0.88 0.66 0.78 +0.14 0.68 0.78 +0.16 0.68 0.78 +0.18 0.68 0.78 +0.82 0.68 0.78 +0.84 0.68 0.78 +0.86 0.68 0.78 +0.14 0.7 0.78 +0.16 0.7 0.78 +0.18 0.7 0.78 +0.2 0.7 0.78 +0.8 0.7 0.78 +0.82 0.7 0.78 +0.84 0.7 0.78 +0.86 0.7 0.78 +0.16 0.72 0.78 +0.18 0.72 0.78 +0.2 0.72 0.78 +0.22 0.72 0.78 +0.78 0.72 0.78 +0.8 0.72 0.78 +0.82 0.72 0.78 +0.84 0.72 0.78 +0.18 0.74 0.78 +0.2 0.74 0.78 +0.22 0.74 0.78 +0.24 0.74 0.78 +0.76 0.74 0.78 +0.78 0.74 0.78 +0.8 0.74 0.78 +0.82 0.74 0.78 +0.18 0.76 0.78 +0.2 0.76 0.78 +0.22 0.76 0.78 +0.24 0.76 0.78 +0.26 0.76 0.78 +0.74 0.76 0.78 +0.76 0.76 0.78 +0.78 0.76 0.78 +0.8 0.76 0.78 +0.82 0.76 0.78 +0.2 0.78 0.78 +0.22 0.78 0.78 +0.24 0.78 0.78 +0.26 0.78 0.78 +0.28 0.78 0.78 +0.72 0.78 0.78 +0.74 0.78 0.78 +0.76 0.78 0.78 +0.78 0.78 0.78 +0.8 0.78 0.78 +0.22 0.8 0.78 +0.24 0.8 0.78 +0.26 0.8 0.78 +0.28 0.8 0.78 +0.3 0.8 0.78 +0.7 0.8 0.78 +0.72 0.8 0.78 +0.74 0.8 0.78 +0.76 0.8 0.78 +0.78 0.8 0.78 +0.24 0.82 0.78 +0.26 0.82 0.78 +0.28 0.82 0.78 +0.3 0.82 0.78 +0.32 0.82 0.78 +0.34 0.82 0.78 +0.66 0.82 0.78 +0.68 0.82 0.78 +0.7 0.82 0.78 +0.72 0.82 0.78 +0.74 0.82 0.78 +0.76 0.82 0.78 +0.28 0.84 0.78 +0.3 0.84 0.78 +0.32 0.84 0.78 +0.34 0.84 0.78 +0.36 0.84 0.78 +0.38 0.84 0.78 +0.4 0.84 0.78 +0.6 0.84 0.78 +0.62 0.84 0.78 +0.64 0.84 0.78 +0.66 0.84 0.78 +0.68 0.84 0.78 +0.7 0.84 0.78 +0.72 0.84 0.78 +0.3 0.86 0.78 +0.32 0.86 0.78 +0.34 0.86 0.78 +0.36 0.86 0.78 +0.38 0.86 0.78 +0.4 0.86 0.78 +0.42 0.86 0.78 +0.44 0.86 0.78 +0.46 0.86 0.78 +0.48 0.86 0.78 +0.5 0.86 0.78 +0.52 0.86 0.78 +0.54 0.86 0.78 +0.56 0.86 0.78 +0.58 0.86 0.78 +0.6 0.86 0.78 +0.62 0.86 0.78 +0.64 0.86 0.78 +0.66 0.86 0.78 +0.68 0.86 0.78 +0.7 0.86 0.78 +0.34 0.88 0.78 +0.36 0.88 0.78 +0.38 0.88 0.78 +0.4 0.88 0.78 +0.42 0.88 0.78 +0.44 0.88 0.78 +0.46 0.88 0.78 +0.48 0.88 0.78 +0.5 0.88 0.78 +0.52 0.88 0.78 +0.54 0.88 0.78 +0.56 0.88 0.78 +0.58 0.88 0.78 +0.6 0.88 0.78 +0.62 0.88 0.78 +0.64 0.88 0.78 +0.66 0.88 0.78 +0.4 0.9 0.78 +0.42 0.9 0.78 +0.44 0.9 0.78 +0.46 0.9 0.78 +0.48 0.9 0.78 +0.5 0.9 0.78 +0.52 0.9 0.78 +0.54 0.9 0.78 +0.56 0.9 0.78 +0.58 0.9 0.78 +0.6 0.9 0.78 +0.38 0.12 0.8 +0.4 0.12 0.8 +0.42 0.12 0.8 +0.44 0.12 0.8 +0.46 0.12 0.8 +0.48 0.12 0.8 +0.5 0.12 0.8 +0.52 0.12 0.8 +0.54 0.12 0.8 +0.56 0.12 0.8 +0.58 0.12 0.8 +0.6 0.12 0.8 +0.62 0.12 0.8 +0.34 0.14 0.8 +0.36 0.14 0.8 +0.38 0.14 0.8 +0.4 0.14 0.8 +0.42 0.14 0.8 +0.44 0.14 0.8 +0.46 0.14 0.8 +0.48 0.14 0.8 +0.5 0.14 0.8 +0.52 0.14 0.8 +0.54 0.14 0.8 +0.56 0.14 0.8 +0.58 0.14 0.8 +0.6 0.14 0.8 +0.62 0.14 0.8 +0.64 0.14 0.8 +0.66 0.14 0.8 +0.3 0.16 0.8 +0.32 0.16 0.8 +0.34 0.16 0.8 +0.36 0.16 0.8 +0.38 0.16 0.8 +0.4 0.16 0.8 +0.42 0.16 0.8 +0.44 0.16 0.8 +0.46 0.16 0.8 +0.48 0.16 0.8 +0.5 0.16 0.8 +0.52 0.16 0.8 +0.54 0.16 0.8 +0.56 0.16 0.8 +0.58 0.16 0.8 +0.6 0.16 0.8 +0.62 0.16 0.8 +0.64 0.16 0.8 +0.66 0.16 0.8 +0.68 0.16 0.8 +0.7 0.16 0.8 +0.28 0.18 0.8 +0.3 0.18 0.8 +0.32 0.18 0.8 +0.34 0.18 0.8 +0.36 0.18 0.8 +0.38 0.18 0.8 +0.62 0.18 0.8 +0.64 0.18 0.8 +0.66 0.18 0.8 +0.68 0.18 0.8 +0.7 0.18 0.8 +0.72 0.18 0.8 +0.24 0.2 0.8 +0.26 0.2 0.8 +0.28 0.2 0.8 +0.3 0.2 0.8 +0.32 0.2 0.8 +0.34 0.2 0.8 +0.66 0.2 0.8 +0.68 0.2 0.8 +0.7 0.2 0.8 +0.72 0.2 0.8 +0.74 0.2 0.8 +0.76 0.2 0.8 +0.22 0.22 0.8 +0.24 0.22 0.8 +0.26 0.22 0.8 +0.28 0.22 0.8 +0.3 0.22 0.8 +0.7 0.22 0.8 +0.72 0.22 0.8 +0.74 0.22 0.8 +0.76 0.22 0.8 +0.78 0.22 0.8 +0.2 0.24 0.8 +0.22 0.24 0.8 +0.24 0.24 0.8 +0.26 0.24 0.8 +0.28 0.24 0.8 +0.72 0.24 0.8 +0.74 0.24 0.8 +0.76 0.24 0.8 +0.78 0.24 0.8 +0.8 0.24 0.8 +0.2 0.26 0.8 +0.22 0.26 0.8 +0.24 0.26 0.8 +0.26 0.26 0.8 +0.74 0.26 0.8 +0.76 0.26 0.8 +0.78 0.26 0.8 +0.8 0.26 0.8 +0.18 0.28 0.8 +0.2 0.28 0.8 +0.22 0.28 0.8 +0.24 0.28 0.8 +0.76 0.28 0.8 +0.78 0.28 0.8 +0.8 0.28 0.8 +0.82 0.28 0.8 +0.16 0.3 0.8 +0.18 0.3 0.8 +0.2 0.3 0.8 +0.22 0.3 0.8 +0.78 0.3 0.8 +0.8 0.3 0.8 +0.82 0.3 0.8 +0.84 0.3 0.8 +0.16 0.32 0.8 +0.18 0.32 0.8 +0.2 0.32 0.8 +0.8 0.32 0.8 +0.82 0.32 0.8 +0.84 0.32 0.8 +0.14 0.34 0.8 +0.16 0.34 0.8 +0.18 0.34 0.8 +0.2 0.34 0.8 +0.8 0.34 0.8 +0.82 0.34 0.8 +0.84 0.34 0.8 +0.86 0.34 0.8 +0.14 0.36 0.8 +0.16 0.36 0.8 +0.18 0.36 0.8 +0.82 0.36 0.8 +0.84 0.36 0.8 +0.86 0.36 0.8 +0.12 0.38 0.8 +0.14 0.38 0.8 +0.16 0.38 0.8 +0.18 0.38 0.8 +0.82 0.38 0.8 +0.84 0.38 0.8 +0.86 0.38 0.8 +0.88 0.38 0.8 +0.12 0.4 0.8 +0.14 0.4 0.8 +0.16 0.4 0.8 +0.84 0.4 0.8 +0.86 0.4 0.8 +0.88 0.4 0.8 +0.12 0.42 0.8 +0.14 0.42 0.8 +0.16 0.42 0.8 +0.84 0.42 0.8 +0.86 0.42 0.8 +0.88 0.42 0.8 +0.12 0.44 0.8 +0.14 0.44 0.8 +0.16 0.44 0.8 +0.84 0.44 0.8 +0.86 0.44 0.8 +0.88 0.44 0.8 +0.12 0.46 0.8 +0.14 0.46 0.8 +0.16 0.46 0.8 +0.84 0.46 0.8 +0.86 0.46 0.8 +0.88 0.46 0.8 +0.12 0.48 0.8 +0.14 0.48 0.8 +0.16 0.48 0.8 +0.84 0.48 0.8 +0.86 0.48 0.8 +0.88 0.48 0.8 +0.12 0.5 0.8 +0.14 0.5 0.8 +0.16 0.5 0.8 +0.84 0.5 0.8 +0.86 0.5 0.8 +0.88 0.5 0.8 +0.12 0.52 0.8 +0.14 0.52 0.8 +0.16 0.52 0.8 +0.84 0.52 0.8 +0.86 0.52 0.8 +0.88 0.52 0.8 +0.12 0.54 0.8 +0.14 0.54 0.8 +0.16 0.54 0.8 +0.84 0.54 0.8 +0.86 0.54 0.8 +0.88 0.54 0.8 +0.12 0.56 0.8 +0.14 0.56 0.8 +0.16 0.56 0.8 +0.84 0.56 0.8 +0.86 0.56 0.8 +0.88 0.56 0.8 +0.12 0.58 0.8 +0.14 0.58 0.8 +0.16 0.58 0.8 +0.84 0.58 0.8 +0.86 0.58 0.8 +0.88 0.58 0.8 +0.12 0.6 0.8 +0.14 0.6 0.8 +0.16 0.6 0.8 +0.84 0.6 0.8 +0.86 0.6 0.8 +0.88 0.6 0.8 +0.12 0.62 0.8 +0.14 0.62 0.8 +0.16 0.62 0.8 +0.18 0.62 0.8 +0.82 0.62 0.8 +0.84 0.62 0.8 +0.86 0.62 0.8 +0.88 0.62 0.8 +0.14 0.64 0.8 +0.16 0.64 0.8 +0.18 0.64 0.8 +0.82 0.64 0.8 +0.84 0.64 0.8 +0.86 0.64 0.8 +0.14 0.66 0.8 +0.16 0.66 0.8 +0.18 0.66 0.8 +0.2 0.66 0.8 +0.8 0.66 0.8 +0.82 0.66 0.8 +0.84 0.66 0.8 +0.86 0.66 0.8 +0.16 0.68 0.8 +0.18 0.68 0.8 +0.2 0.68 0.8 +0.8 0.68 0.8 +0.82 0.68 0.8 +0.84 0.68 0.8 +0.16 0.7 0.8 +0.18 0.7 0.8 +0.2 0.7 0.8 +0.22 0.7 0.8 +0.78 0.7 0.8 +0.8 0.7 0.8 +0.82 0.7 0.8 +0.84 0.7 0.8 +0.18 0.72 0.8 +0.2 0.72 0.8 +0.22 0.72 0.8 +0.24 0.72 0.8 +0.76 0.72 0.8 +0.78 0.72 0.8 +0.8 0.72 0.8 +0.82 0.72 0.8 +0.2 0.74 0.8 +0.22 0.74 0.8 +0.24 0.74 0.8 +0.26 0.74 0.8 +0.74 0.74 0.8 +0.76 0.74 0.8 +0.78 0.74 0.8 +0.8 0.74 0.8 +0.2 0.76 0.8 +0.22 0.76 0.8 +0.24 0.76 0.8 +0.26 0.76 0.8 +0.28 0.76 0.8 +0.72 0.76 0.8 +0.74 0.76 0.8 +0.76 0.76 0.8 +0.78 0.76 0.8 +0.8 0.76 0.8 +0.22 0.78 0.8 +0.24 0.78 0.8 +0.26 0.78 0.8 +0.28 0.78 0.8 +0.3 0.78 0.8 +0.7 0.78 0.8 +0.72 0.78 0.8 +0.74 0.78 0.8 +0.76 0.78 0.8 +0.78 0.78 0.8 +0.24 0.8 0.8 +0.26 0.8 0.8 +0.28 0.8 0.8 +0.3 0.8 0.8 +0.32 0.8 0.8 +0.34 0.8 0.8 +0.66 0.8 0.8 +0.68 0.8 0.8 +0.7 0.8 0.8 +0.72 0.8 0.8 +0.74 0.8 0.8 +0.76 0.8 0.8 +0.28 0.82 0.8 +0.3 0.82 0.8 +0.32 0.82 0.8 +0.34 0.82 0.8 +0.36 0.82 0.8 +0.38 0.82 0.8 +0.62 0.82 0.8 +0.64 0.82 0.8 +0.66 0.82 0.8 +0.68 0.82 0.8 +0.7 0.82 0.8 +0.72 0.82 0.8 +0.3 0.84 0.8 +0.32 0.84 0.8 +0.34 0.84 0.8 +0.36 0.84 0.8 +0.38 0.84 0.8 +0.4 0.84 0.8 +0.42 0.84 0.8 +0.44 0.84 0.8 +0.46 0.84 0.8 +0.48 0.84 0.8 +0.5 0.84 0.8 +0.52 0.84 0.8 +0.54 0.84 0.8 +0.56 0.84 0.8 +0.58 0.84 0.8 +0.6 0.84 0.8 +0.62 0.84 0.8 +0.64 0.84 0.8 +0.66 0.84 0.8 +0.68 0.84 0.8 +0.7 0.84 0.8 +0.34 0.86 0.8 +0.36 0.86 0.8 +0.38 0.86 0.8 +0.4 0.86 0.8 +0.42 0.86 0.8 +0.44 0.86 0.8 +0.46 0.86 0.8 +0.48 0.86 0.8 +0.5 0.86 0.8 +0.52 0.86 0.8 +0.54 0.86 0.8 +0.56 0.86 0.8 +0.58 0.86 0.8 +0.6 0.86 0.8 +0.62 0.86 0.8 +0.64 0.86 0.8 +0.66 0.86 0.8 +0.38 0.88 0.8 +0.4 0.88 0.8 +0.42 0.88 0.8 +0.44 0.88 0.8 +0.46 0.88 0.8 +0.48 0.88 0.8 +0.5 0.88 0.8 +0.52 0.88 0.8 +0.54 0.88 0.8 +0.56 0.88 0.8 +0.58 0.88 0.8 +0.6 0.88 0.8 +0.62 0.88 0.8 +0.46 0.12 0.82 +0.48 0.12 0.82 +0.5 0.12 0.82 +0.52 0.12 0.82 +0.54 0.12 0.82 +0.38 0.14 0.82 +0.4 0.14 0.82 +0.42 0.14 0.82 +0.44 0.14 0.82 +0.46 0.14 0.82 +0.48 0.14 0.82 +0.5 0.14 0.82 +0.52 0.14 0.82 +0.54 0.14 0.82 +0.56 0.14 0.82 +0.58 0.14 0.82 +0.6 0.14 0.82 +0.62 0.14 0.82 +0.34 0.16 0.82 +0.36 0.16 0.82 +0.38 0.16 0.82 +0.4 0.16 0.82 +0.42 0.16 0.82 +0.44 0.16 0.82 +0.46 0.16 0.82 +0.48 0.16 0.82 +0.5 0.16 0.82 +0.52 0.16 0.82 +0.54 0.16 0.82 +0.56 0.16 0.82 +0.58 0.16 0.82 +0.6 0.16 0.82 +0.62 0.16 0.82 +0.64 0.16 0.82 +0.66 0.16 0.82 +0.3 0.18 0.82 +0.32 0.18 0.82 +0.34 0.18 0.82 +0.36 0.18 0.82 +0.38 0.18 0.82 +0.4 0.18 0.82 +0.42 0.18 0.82 +0.44 0.18 0.82 +0.46 0.18 0.82 +0.48 0.18 0.82 +0.5 0.18 0.82 +0.52 0.18 0.82 +0.54 0.18 0.82 +0.56 0.18 0.82 +0.58 0.18 0.82 +0.6 0.18 0.82 +0.62 0.18 0.82 +0.64 0.18 0.82 +0.66 0.18 0.82 +0.68 0.18 0.82 +0.7 0.18 0.82 +0.28 0.2 0.82 +0.3 0.2 0.82 +0.32 0.2 0.82 +0.34 0.2 0.82 +0.36 0.2 0.82 +0.38 0.2 0.82 +0.62 0.2 0.82 +0.64 0.2 0.82 +0.66 0.2 0.82 +0.68 0.2 0.82 +0.7 0.2 0.82 +0.72 0.2 0.82 +0.24 0.22 0.82 +0.26 0.22 0.82 +0.28 0.22 0.82 +0.3 0.22 0.82 +0.32 0.22 0.82 +0.34 0.22 0.82 +0.66 0.22 0.82 +0.68 0.22 0.82 +0.7 0.22 0.82 +0.72 0.22 0.82 +0.74 0.22 0.82 +0.76 0.22 0.82 +0.22 0.24 0.82 +0.24 0.24 0.82 +0.26 0.24 0.82 +0.28 0.24 0.82 +0.3 0.24 0.82 +0.7 0.24 0.82 +0.72 0.24 0.82 +0.74 0.24 0.82 +0.76 0.24 0.82 +0.78 0.24 0.82 +0.22 0.26 0.82 +0.24 0.26 0.82 +0.26 0.26 0.82 +0.28 0.26 0.82 +0.72 0.26 0.82 +0.74 0.26 0.82 +0.76 0.26 0.82 +0.78 0.26 0.82 +0.2 0.28 0.82 +0.22 0.28 0.82 +0.24 0.28 0.82 +0.26 0.28 0.82 +0.74 0.28 0.82 +0.76 0.28 0.82 +0.78 0.28 0.82 +0.8 0.28 0.82 +0.18 0.3 0.82 +0.2 0.3 0.82 +0.22 0.3 0.82 +0.24 0.3 0.82 +0.76 0.3 0.82 +0.78 0.3 0.82 +0.8 0.3 0.82 +0.82 0.3 0.82 +0.18 0.32 0.82 +0.2 0.32 0.82 +0.22 0.32 0.82 +0.78 0.32 0.82 +0.8 0.32 0.82 +0.82 0.32 0.82 +0.16 0.34 0.82 +0.18 0.34 0.82 +0.2 0.34 0.82 +0.22 0.34 0.82 +0.78 0.34 0.82 +0.8 0.34 0.82 +0.82 0.34 0.82 +0.84 0.34 0.82 +0.16 0.36 0.82 +0.18 0.36 0.82 +0.2 0.36 0.82 +0.8 0.36 0.82 +0.82 0.36 0.82 +0.84 0.36 0.82 +0.14 0.38 0.82 +0.16 0.38 0.82 +0.18 0.38 0.82 +0.2 0.38 0.82 +0.8 0.38 0.82 +0.82 0.38 0.82 +0.84 0.38 0.82 +0.86 0.38 0.82 +0.14 0.4 0.82 +0.16 0.4 0.82 +0.18 0.4 0.82 +0.82 0.4 0.82 +0.84 0.4 0.82 +0.86 0.4 0.82 +0.14 0.42 0.82 +0.16 0.42 0.82 +0.18 0.42 0.82 +0.82 0.42 0.82 +0.84 0.42 0.82 +0.86 0.42 0.82 +0.14 0.44 0.82 +0.16 0.44 0.82 +0.18 0.44 0.82 +0.82 0.44 0.82 +0.84 0.44 0.82 +0.86 0.44 0.82 +0.12 0.46 0.82 +0.14 0.46 0.82 +0.16 0.46 0.82 +0.18 0.46 0.82 +0.82 0.46 0.82 +0.84 0.46 0.82 +0.86 0.46 0.82 +0.88 0.46 0.82 +0.12 0.48 0.82 +0.14 0.48 0.82 +0.16 0.48 0.82 +0.18 0.48 0.82 +0.82 0.48 0.82 +0.84 0.48 0.82 +0.86 0.48 0.82 +0.88 0.48 0.82 +0.12 0.5 0.82 +0.14 0.5 0.82 +0.16 0.5 0.82 +0.18 0.5 0.82 +0.82 0.5 0.82 +0.84 0.5 0.82 +0.86 0.5 0.82 +0.88 0.5 0.82 +0.12 0.52 0.82 +0.14 0.52 0.82 +0.16 0.52 0.82 +0.18 0.52 0.82 +0.82 0.52 0.82 +0.84 0.52 0.82 +0.86 0.52 0.82 +0.88 0.52 0.82 +0.12 0.54 0.82 +0.14 0.54 0.82 +0.16 0.54 0.82 +0.18 0.54 0.82 +0.82 0.54 0.82 +0.84 0.54 0.82 +0.86 0.54 0.82 +0.88 0.54 0.82 +0.14 0.56 0.82 +0.16 0.56 0.82 +0.18 0.56 0.82 +0.82 0.56 0.82 +0.84 0.56 0.82 +0.86 0.56 0.82 +0.14 0.58 0.82 +0.16 0.58 0.82 +0.18 0.58 0.82 +0.82 0.58 0.82 +0.84 0.58 0.82 +0.86 0.58 0.82 +0.14 0.6 0.82 +0.16 0.6 0.82 +0.18 0.6 0.82 +0.82 0.6 0.82 +0.84 0.6 0.82 +0.86 0.6 0.82 +0.14 0.62 0.82 +0.16 0.62 0.82 +0.18 0.62 0.82 +0.2 0.62 0.82 +0.8 0.62 0.82 +0.82 0.62 0.82 +0.84 0.62 0.82 +0.86 0.62 0.82 +0.16 0.64 0.82 +0.18 0.64 0.82 +0.2 0.64 0.82 +0.8 0.64 0.82 +0.82 0.64 0.82 +0.84 0.64 0.82 +0.16 0.66 0.82 +0.18 0.66 0.82 +0.2 0.66 0.82 +0.22 0.66 0.82 +0.78 0.66 0.82 +0.8 0.66 0.82 +0.82 0.66 0.82 +0.84 0.66 0.82 +0.18 0.68 0.82 +0.2 0.68 0.82 +0.22 0.68 0.82 +0.78 0.68 0.82 +0.8 0.68 0.82 +0.82 0.68 0.82 +0.18 0.7 0.82 +0.2 0.7 0.82 +0.22 0.7 0.82 +0.24 0.7 0.82 +0.76 0.7 0.82 +0.78 0.7 0.82 +0.8 0.7 0.82 +0.82 0.7 0.82 +0.2 0.72 0.82 +0.22 0.72 0.82 +0.24 0.72 0.82 +0.26 0.72 0.82 +0.74 0.72 0.82 +0.76 0.72 0.82 +0.78 0.72 0.82 +0.8 0.72 0.82 +0.22 0.74 0.82 +0.24 0.74 0.82 +0.26 0.74 0.82 +0.28 0.74 0.82 +0.72 0.74 0.82 +0.74 0.74 0.82 +0.76 0.74 0.82 +0.78 0.74 0.82 +0.22 0.76 0.82 +0.24 0.76 0.82 +0.26 0.76 0.82 +0.28 0.76 0.82 +0.3 0.76 0.82 +0.7 0.76 0.82 +0.72 0.76 0.82 +0.74 0.76 0.82 +0.76 0.76 0.82 +0.78 0.76 0.82 +0.24 0.78 0.82 +0.26 0.78 0.82 +0.28 0.78 0.82 +0.3 0.78 0.82 +0.32 0.78 0.82 +0.34 0.78 0.82 +0.66 0.78 0.82 +0.68 0.78 0.82 +0.7 0.78 0.82 +0.72 0.78 0.82 +0.74 0.78 0.82 +0.76 0.78 0.82 +0.28 0.8 0.82 +0.3 0.8 0.82 +0.32 0.8 0.82 +0.34 0.8 0.82 +0.36 0.8 0.82 +0.38 0.8 0.82 +0.62 0.8 0.82 +0.64 0.8 0.82 +0.66 0.8 0.82 +0.68 0.8 0.82 +0.7 0.8 0.82 +0.72 0.8 0.82 +0.3 0.82 0.82 +0.32 0.82 0.82 +0.34 0.82 0.82 +0.36 0.82 0.82 +0.38 0.82 0.82 +0.4 0.82 0.82 +0.42 0.82 0.82 +0.44 0.82 0.82 +0.46 0.82 0.82 +0.48 0.82 0.82 +0.5 0.82 0.82 +0.52 0.82 0.82 +0.54 0.82 0.82 +0.56 0.82 0.82 +0.58 0.82 0.82 +0.6 0.82 0.82 +0.62 0.82 0.82 +0.64 0.82 0.82 +0.66 0.82 0.82 +0.68 0.82 0.82 +0.7 0.82 0.82 +0.34 0.84 0.82 +0.36 0.84 0.82 +0.38 0.84 0.82 +0.4 0.84 0.82 +0.42 0.84 0.82 +0.44 0.84 0.82 +0.46 0.84 0.82 +0.48 0.84 0.82 +0.5 0.84 0.82 +0.52 0.84 0.82 +0.54 0.84 0.82 +0.56 0.84 0.82 +0.58 0.84 0.82 +0.6 0.84 0.82 +0.62 0.84 0.82 +0.64 0.84 0.82 +0.66 0.84 0.82 +0.38 0.86 0.82 +0.4 0.86 0.82 +0.42 0.86 0.82 +0.44 0.86 0.82 +0.46 0.86 0.82 +0.48 0.86 0.82 +0.5 0.86 0.82 +0.52 0.86 0.82 +0.54 0.86 0.82 +0.56 0.86 0.82 +0.58 0.86 0.82 +0.6 0.86 0.82 +0.62 0.86 0.82 +0.46 0.88 0.82 +0.48 0.88 0.82 +0.5 0.88 0.82 +0.52 0.88 0.82 +0.54 0.88 0.82 +0.44 0.14 0.84 +0.46 0.14 0.84 +0.48 0.14 0.84 +0.5 0.14 0.84 +0.52 0.14 0.84 +0.54 0.14 0.84 +0.56 0.14 0.84 +0.38 0.16 0.84 +0.4 0.16 0.84 +0.42 0.16 0.84 +0.44 0.16 0.84 +0.46 0.16 0.84 +0.48 0.16 0.84 +0.5 0.16 0.84 +0.52 0.16 0.84 +0.54 0.16 0.84 +0.56 0.16 0.84 +0.58 0.16 0.84 +0.6 0.16 0.84 +0.62 0.16 0.84 +0.34 0.18 0.84 +0.36 0.18 0.84 +0.38 0.18 0.84 +0.4 0.18 0.84 +0.42 0.18 0.84 +0.44 0.18 0.84 +0.46 0.18 0.84 +0.48 0.18 0.84 +0.5 0.18 0.84 +0.52 0.18 0.84 +0.54 0.18 0.84 +0.56 0.18 0.84 +0.58 0.18 0.84 +0.6 0.18 0.84 +0.62 0.18 0.84 +0.64 0.18 0.84 +0.66 0.18 0.84 +0.3 0.2 0.84 +0.32 0.2 0.84 +0.34 0.2 0.84 +0.36 0.2 0.84 +0.38 0.2 0.84 +0.4 0.2 0.84 +0.42 0.2 0.84 +0.44 0.2 0.84 +0.46 0.2 0.84 +0.48 0.2 0.84 +0.5 0.2 0.84 +0.52 0.2 0.84 +0.54 0.2 0.84 +0.56 0.2 0.84 +0.58 0.2 0.84 +0.6 0.2 0.84 +0.62 0.2 0.84 +0.64 0.2 0.84 +0.66 0.2 0.84 +0.68 0.2 0.84 +0.7 0.2 0.84 +0.28 0.22 0.84 +0.3 0.22 0.84 +0.32 0.22 0.84 +0.34 0.22 0.84 +0.36 0.22 0.84 +0.38 0.22 0.84 +0.4 0.22 0.84 +0.6 0.22 0.84 +0.62 0.22 0.84 +0.64 0.22 0.84 +0.66 0.22 0.84 +0.68 0.22 0.84 +0.7 0.22 0.84 +0.72 0.22 0.84 +0.26 0.24 0.84 +0.28 0.24 0.84 +0.3 0.24 0.84 +0.32 0.24 0.84 +0.34 0.24 0.84 +0.36 0.24 0.84 +0.64 0.24 0.84 +0.66 0.24 0.84 +0.68 0.24 0.84 +0.7 0.24 0.84 +0.72 0.24 0.84 +0.74 0.24 0.84 +0.24 0.26 0.84 +0.26 0.26 0.84 +0.28 0.26 0.84 +0.3 0.26 0.84 +0.32 0.26 0.84 +0.68 0.26 0.84 +0.7 0.26 0.84 +0.72 0.26 0.84 +0.74 0.26 0.84 +0.76 0.26 0.84 +0.22 0.28 0.84 +0.24 0.28 0.84 +0.26 0.28 0.84 +0.28 0.28 0.84 +0.3 0.28 0.84 +0.7 0.28 0.84 +0.72 0.28 0.84 +0.74 0.28 0.84 +0.76 0.28 0.84 +0.78 0.28 0.84 +0.2 0.3 0.84 +0.22 0.3 0.84 +0.24 0.3 0.84 +0.26 0.3 0.84 +0.28 0.3 0.84 +0.72 0.3 0.84 +0.74 0.3 0.84 +0.76 0.3 0.84 +0.78 0.3 0.84 +0.8 0.3 0.84 +0.2 0.32 0.84 +0.22 0.32 0.84 +0.24 0.32 0.84 +0.26 0.32 0.84 +0.74 0.32 0.84 +0.76 0.32 0.84 +0.78 0.32 0.84 +0.8 0.32 0.84 +0.18 0.34 0.84 +0.2 0.34 0.84 +0.22 0.34 0.84 +0.24 0.34 0.84 +0.76 0.34 0.84 +0.78 0.34 0.84 +0.8 0.34 0.84 +0.82 0.34 0.84 +0.18 0.36 0.84 +0.2 0.36 0.84 +0.22 0.36 0.84 +0.24 0.36 0.84 +0.76 0.36 0.84 +0.78 0.36 0.84 +0.8 0.36 0.84 +0.82 0.36 0.84 +0.16 0.38 0.84 +0.18 0.38 0.84 +0.2 0.38 0.84 +0.22 0.38 0.84 +0.78 0.38 0.84 +0.8 0.38 0.84 +0.82 0.38 0.84 +0.84 0.38 0.84 +0.16 0.4 0.84 +0.18 0.4 0.84 +0.2 0.4 0.84 +0.22 0.4 0.84 +0.78 0.4 0.84 +0.8 0.4 0.84 +0.82 0.4 0.84 +0.84 0.4 0.84 +0.16 0.42 0.84 +0.18 0.42 0.84 +0.2 0.42 0.84 +0.8 0.42 0.84 +0.82 0.42 0.84 +0.84 0.42 0.84 +0.14 0.44 0.84 +0.16 0.44 0.84 +0.18 0.44 0.84 +0.2 0.44 0.84 +0.8 0.44 0.84 +0.82 0.44 0.84 +0.84 0.44 0.84 +0.86 0.44 0.84 +0.14 0.46 0.84 +0.16 0.46 0.84 +0.18 0.46 0.84 +0.2 0.46 0.84 +0.8 0.46 0.84 +0.82 0.46 0.84 +0.84 0.46 0.84 +0.86 0.46 0.84 +0.14 0.48 0.84 +0.16 0.48 0.84 +0.18 0.48 0.84 +0.2 0.48 0.84 +0.8 0.48 0.84 +0.82 0.48 0.84 +0.84 0.48 0.84 +0.86 0.48 0.84 +0.14 0.5 0.84 +0.16 0.5 0.84 +0.18 0.5 0.84 +0.2 0.5 0.84 +0.8 0.5 0.84 +0.82 0.5 0.84 +0.84 0.5 0.84 +0.86 0.5 0.84 +0.14 0.52 0.84 +0.16 0.52 0.84 +0.18 0.52 0.84 +0.2 0.52 0.84 +0.8 0.52 0.84 +0.82 0.52 0.84 +0.84 0.52 0.84 +0.86 0.52 0.84 +0.14 0.54 0.84 +0.16 0.54 0.84 +0.18 0.54 0.84 +0.2 0.54 0.84 +0.8 0.54 0.84 +0.82 0.54 0.84 +0.84 0.54 0.84 +0.86 0.54 0.84 +0.14 0.56 0.84 +0.16 0.56 0.84 +0.18 0.56 0.84 +0.2 0.56 0.84 +0.8 0.56 0.84 +0.82 0.56 0.84 +0.84 0.56 0.84 +0.86 0.56 0.84 +0.16 0.58 0.84 +0.18 0.58 0.84 +0.2 0.58 0.84 +0.8 0.58 0.84 +0.82 0.58 0.84 +0.84 0.58 0.84 +0.16 0.6 0.84 +0.18 0.6 0.84 +0.2 0.6 0.84 +0.22 0.6 0.84 +0.78 0.6 0.84 +0.8 0.6 0.84 +0.82 0.6 0.84 +0.84 0.6 0.84 +0.16 0.62 0.84 +0.18 0.62 0.84 +0.2 0.62 0.84 +0.22 0.62 0.84 +0.78 0.62 0.84 +0.8 0.62 0.84 +0.82 0.62 0.84 +0.84 0.62 0.84 +0.18 0.64 0.84 +0.2 0.64 0.84 +0.22 0.64 0.84 +0.24 0.64 0.84 +0.76 0.64 0.84 +0.78 0.64 0.84 +0.8 0.64 0.84 +0.82 0.64 0.84 +0.18 0.66 0.84 +0.2 0.66 0.84 +0.22 0.66 0.84 +0.24 0.66 0.84 +0.76 0.66 0.84 +0.78 0.66 0.84 +0.8 0.66 0.84 +0.82 0.66 0.84 +0.2 0.68 0.84 +0.22 0.68 0.84 +0.24 0.68 0.84 +0.26 0.68 0.84 +0.74 0.68 0.84 +0.76 0.68 0.84 +0.78 0.68 0.84 +0.8 0.68 0.84 +0.2 0.7 0.84 +0.22 0.7 0.84 +0.24 0.7 0.84 +0.26 0.7 0.84 +0.28 0.7 0.84 +0.72 0.7 0.84 +0.74 0.7 0.84 +0.76 0.7 0.84 +0.78 0.7 0.84 +0.8 0.7 0.84 +0.22 0.72 0.84 +0.24 0.72 0.84 +0.26 0.72 0.84 +0.28 0.72 0.84 +0.3 0.72 0.84 +0.7 0.72 0.84 +0.72 0.72 0.84 +0.74 0.72 0.84 +0.76 0.72 0.84 +0.78 0.72 0.84 +0.24 0.74 0.84 +0.26 0.74 0.84 +0.28 0.74 0.84 +0.3 0.74 0.84 +0.32 0.74 0.84 +0.68 0.74 0.84 +0.7 0.74 0.84 +0.72 0.74 0.84 +0.74 0.74 0.84 +0.76 0.74 0.84 +0.26 0.76 0.84 +0.28 0.76 0.84 +0.3 0.76 0.84 +0.32 0.76 0.84 +0.34 0.76 0.84 +0.36 0.76 0.84 +0.64 0.76 0.84 +0.66 0.76 0.84 +0.68 0.76 0.84 +0.7 0.76 0.84 +0.72 0.76 0.84 +0.74 0.76 0.84 +0.28 0.78 0.84 +0.3 0.78 0.84 +0.32 0.78 0.84 +0.34 0.78 0.84 +0.36 0.78 0.84 +0.38 0.78 0.84 +0.4 0.78 0.84 +0.6 0.78 0.84 +0.62 0.78 0.84 +0.64 0.78 0.84 +0.66 0.78 0.84 +0.68 0.78 0.84 +0.7 0.78 0.84 +0.72 0.78 0.84 +0.3 0.8 0.84 +0.32 0.8 0.84 +0.34 0.8 0.84 +0.36 0.8 0.84 +0.38 0.8 0.84 +0.4 0.8 0.84 +0.42 0.8 0.84 +0.44 0.8 0.84 +0.46 0.8 0.84 +0.48 0.8 0.84 +0.5 0.8 0.84 +0.52 0.8 0.84 +0.54 0.8 0.84 +0.56 0.8 0.84 +0.58 0.8 0.84 +0.6 0.8 0.84 +0.62 0.8 0.84 +0.64 0.8 0.84 +0.66 0.8 0.84 +0.68 0.8 0.84 +0.7 0.8 0.84 +0.34 0.82 0.84 +0.36 0.82 0.84 +0.38 0.82 0.84 +0.4 0.82 0.84 +0.42 0.82 0.84 +0.44 0.82 0.84 +0.46 0.82 0.84 +0.48 0.82 0.84 +0.5 0.82 0.84 +0.52 0.82 0.84 +0.54 0.82 0.84 +0.56 0.82 0.84 +0.58 0.82 0.84 +0.6 0.82 0.84 +0.62 0.82 0.84 +0.64 0.82 0.84 +0.66 0.82 0.84 +0.38 0.84 0.84 +0.4 0.84 0.84 +0.42 0.84 0.84 +0.44 0.84 0.84 +0.46 0.84 0.84 +0.48 0.84 0.84 +0.5 0.84 0.84 +0.52 0.84 0.84 +0.54 0.84 0.84 +0.56 0.84 0.84 +0.58 0.84 0.84 +0.6 0.84 0.84 +0.62 0.84 0.84 +0.44 0.86 0.84 +0.46 0.86 0.84 +0.48 0.86 0.84 +0.5 0.86 0.84 +0.52 0.86 0.84 +0.54 0.86 0.84 +0.56 0.86 0.84 +0.44 0.16 0.86 +0.46 0.16 0.86 +0.48 0.16 0.86 +0.5 0.16 0.86 +0.52 0.16 0.86 +0.54 0.16 0.86 +0.56 0.16 0.86 +0.38 0.18 0.86 +0.4 0.18 0.86 +0.42 0.18 0.86 +0.44 0.18 0.86 +0.46 0.18 0.86 +0.48 0.18 0.86 +0.5 0.18 0.86 +0.52 0.18 0.86 +0.54 0.18 0.86 +0.56 0.18 0.86 +0.58 0.18 0.86 +0.6 0.18 0.86 +0.62 0.18 0.86 +0.34 0.2 0.86 +0.36 0.2 0.86 +0.38 0.2 0.86 +0.4 0.2 0.86 +0.42 0.2 0.86 +0.44 0.2 0.86 +0.46 0.2 0.86 +0.48 0.2 0.86 +0.5 0.2 0.86 +0.52 0.2 0.86 +0.54 0.2 0.86 +0.56 0.2 0.86 +0.58 0.2 0.86 +0.6 0.2 0.86 +0.62 0.2 0.86 +0.64 0.2 0.86 +0.66 0.2 0.86 +0.3 0.22 0.86 +0.32 0.22 0.86 +0.34 0.22 0.86 +0.36 0.22 0.86 +0.38 0.22 0.86 +0.4 0.22 0.86 +0.42 0.22 0.86 +0.44 0.22 0.86 +0.46 0.22 0.86 +0.48 0.22 0.86 +0.5 0.22 0.86 +0.52 0.22 0.86 +0.54 0.22 0.86 +0.56 0.22 0.86 +0.58 0.22 0.86 +0.6 0.22 0.86 +0.62 0.22 0.86 +0.64 0.22 0.86 +0.66 0.22 0.86 +0.68 0.22 0.86 +0.7 0.22 0.86 +0.28 0.24 0.86 +0.3 0.24 0.86 +0.32 0.24 0.86 +0.34 0.24 0.86 +0.36 0.24 0.86 +0.38 0.24 0.86 +0.4 0.24 0.86 +0.42 0.24 0.86 +0.58 0.24 0.86 +0.6 0.24 0.86 +0.62 0.24 0.86 +0.64 0.24 0.86 +0.66 0.24 0.86 +0.68 0.24 0.86 +0.7 0.24 0.86 +0.72 0.24 0.86 +0.26 0.26 0.86 +0.28 0.26 0.86 +0.3 0.26 0.86 +0.32 0.26 0.86 +0.34 0.26 0.86 +0.36 0.26 0.86 +0.64 0.26 0.86 +0.66 0.26 0.86 +0.68 0.26 0.86 +0.7 0.26 0.86 +0.72 0.26 0.86 +0.74 0.26 0.86 +0.24 0.28 0.86 +0.26 0.28 0.86 +0.28 0.28 0.86 +0.3 0.28 0.86 +0.32 0.28 0.86 +0.34 0.28 0.86 +0.66 0.28 0.86 +0.68 0.28 0.86 +0.7 0.28 0.86 +0.72 0.28 0.86 +0.74 0.28 0.86 +0.76 0.28 0.86 +0.22 0.3 0.86 +0.24 0.3 0.86 +0.26 0.3 0.86 +0.28 0.3 0.86 +0.3 0.3 0.86 +0.7 0.3 0.86 +0.72 0.3 0.86 +0.74 0.3 0.86 +0.76 0.3 0.86 +0.78 0.3 0.86 +0.22 0.32 0.86 +0.24 0.32 0.86 +0.26 0.32 0.86 +0.28 0.32 0.86 +0.72 0.32 0.86 +0.74 0.32 0.86 +0.76 0.32 0.86 +0.78 0.32 0.86 +0.2 0.34 0.86 +0.22 0.34 0.86 +0.24 0.34 0.86 +0.26 0.34 0.86 +0.28 0.34 0.86 +0.72 0.34 0.86 +0.74 0.34 0.86 +0.76 0.34 0.86 +0.78 0.34 0.86 +0.8 0.34 0.86 +0.2 0.36 0.86 +0.22 0.36 0.86 +0.24 0.36 0.86 +0.26 0.36 0.86 +0.74 0.36 0.86 +0.76 0.36 0.86 +0.78 0.36 0.86 +0.8 0.36 0.86 +0.18 0.38 0.86 +0.2 0.38 0.86 +0.22 0.38 0.86 +0.24 0.38 0.86 +0.76 0.38 0.86 +0.78 0.38 0.86 +0.8 0.38 0.86 +0.82 0.38 0.86 +0.18 0.4 0.86 +0.2 0.4 0.86 +0.22 0.4 0.86 +0.24 0.4 0.86 +0.76 0.4 0.86 +0.78 0.4 0.86 +0.8 0.4 0.86 +0.82 0.4 0.86 +0.18 0.42 0.86 +0.2 0.42 0.86 +0.22 0.42 0.86 +0.24 0.42 0.86 +0.76 0.42 0.86 +0.78 0.42 0.86 +0.8 0.42 0.86 +0.82 0.42 0.86 +0.16 0.44 0.86 +0.18 0.44 0.86 +0.2 0.44 0.86 +0.22 0.44 0.86 +0.78 0.44 0.86 +0.8 0.44 0.86 +0.82 0.44 0.86 +0.84 0.44 0.86 +0.16 0.46 0.86 +0.18 0.46 0.86 +0.2 0.46 0.86 +0.22 0.46 0.86 +0.78 0.46 0.86 +0.8 0.46 0.86 +0.82 0.46 0.86 +0.84 0.46 0.86 +0.16 0.48 0.86 +0.18 0.48 0.86 +0.2 0.48 0.86 +0.22 0.48 0.86 +0.78 0.48 0.86 +0.8 0.48 0.86 +0.82 0.48 0.86 +0.84 0.48 0.86 +0.16 0.5 0.86 +0.18 0.5 0.86 +0.2 0.5 0.86 +0.22 0.5 0.86 +0.78 0.5 0.86 +0.8 0.5 0.86 +0.82 0.5 0.86 +0.84 0.5 0.86 +0.16 0.52 0.86 +0.18 0.52 0.86 +0.2 0.52 0.86 +0.22 0.52 0.86 +0.78 0.52 0.86 +0.8 0.52 0.86 +0.82 0.52 0.86 +0.84 0.52 0.86 +0.16 0.54 0.86 +0.18 0.54 0.86 +0.2 0.54 0.86 +0.22 0.54 0.86 +0.78 0.54 0.86 +0.8 0.54 0.86 +0.82 0.54 0.86 +0.84 0.54 0.86 +0.16 0.56 0.86 +0.18 0.56 0.86 +0.2 0.56 0.86 +0.22 0.56 0.86 +0.78 0.56 0.86 +0.8 0.56 0.86 +0.82 0.56 0.86 +0.84 0.56 0.86 +0.18 0.58 0.86 +0.2 0.58 0.86 +0.22 0.58 0.86 +0.24 0.58 0.86 +0.76 0.58 0.86 +0.78 0.58 0.86 +0.8 0.58 0.86 +0.82 0.58 0.86 +0.18 0.6 0.86 +0.2 0.6 0.86 +0.22 0.6 0.86 +0.24 0.6 0.86 +0.76 0.6 0.86 +0.78 0.6 0.86 +0.8 0.6 0.86 +0.82 0.6 0.86 +0.18 0.62 0.86 +0.2 0.62 0.86 +0.22 0.62 0.86 +0.24 0.62 0.86 +0.76 0.62 0.86 +0.78 0.62 0.86 +0.8 0.62 0.86 +0.82 0.62 0.86 +0.2 0.64 0.86 +0.22 0.64 0.86 +0.24 0.64 0.86 +0.26 0.64 0.86 +0.74 0.64 0.86 +0.76 0.64 0.86 +0.78 0.64 0.86 +0.8 0.64 0.86 +0.2 0.66 0.86 +0.22 0.66 0.86 +0.24 0.66 0.86 +0.26 0.66 0.86 +0.28 0.66 0.86 +0.72 0.66 0.86 +0.74 0.66 0.86 +0.76 0.66 0.86 +0.78 0.66 0.86 +0.8 0.66 0.86 +0.22 0.68 0.86 +0.24 0.68 0.86 +0.26 0.68 0.86 +0.28 0.68 0.86 +0.72 0.68 0.86 +0.74 0.68 0.86 +0.76 0.68 0.86 +0.78 0.68 0.86 +0.22 0.7 0.86 +0.24 0.7 0.86 +0.26 0.7 0.86 +0.28 0.7 0.86 +0.3 0.7 0.86 +0.7 0.7 0.86 +0.72 0.7 0.86 +0.74 0.7 0.86 +0.76 0.7 0.86 +0.78 0.7 0.86 +0.24 0.72 0.86 +0.26 0.72 0.86 +0.28 0.72 0.86 +0.3 0.72 0.86 +0.32 0.72 0.86 +0.34 0.72 0.86 +0.66 0.72 0.86 +0.68 0.72 0.86 +0.7 0.72 0.86 +0.72 0.72 0.86 +0.74 0.72 0.86 +0.76 0.72 0.86 +0.26 0.74 0.86 +0.28 0.74 0.86 +0.3 0.74 0.86 +0.32 0.74 0.86 +0.34 0.74 0.86 +0.36 0.74 0.86 +0.64 0.74 0.86 +0.66 0.74 0.86 +0.68 0.74 0.86 +0.7 0.74 0.86 +0.72 0.74 0.86 +0.74 0.74 0.86 +0.28 0.76 0.86 +0.3 0.76 0.86 +0.32 0.76 0.86 +0.34 0.76 0.86 +0.36 0.76 0.86 +0.38 0.76 0.86 +0.4 0.76 0.86 +0.42 0.76 0.86 +0.58 0.76 0.86 +0.6 0.76 0.86 +0.62 0.76 0.86 +0.64 0.76 0.86 +0.66 0.76 0.86 +0.68 0.76 0.86 +0.7 0.76 0.86 +0.72 0.76 0.86 +0.3 0.78 0.86 +0.32 0.78 0.86 +0.34 0.78 0.86 +0.36 0.78 0.86 +0.38 0.78 0.86 +0.4 0.78 0.86 +0.42 0.78 0.86 +0.44 0.78 0.86 +0.46 0.78 0.86 +0.48 0.78 0.86 +0.5 0.78 0.86 +0.52 0.78 0.86 +0.54 0.78 0.86 +0.56 0.78 0.86 +0.58 0.78 0.86 +0.6 0.78 0.86 +0.62 0.78 0.86 +0.64 0.78 0.86 +0.66 0.78 0.86 +0.68 0.78 0.86 +0.7 0.78 0.86 +0.34 0.8 0.86 +0.36 0.8 0.86 +0.38 0.8 0.86 +0.4 0.8 0.86 +0.42 0.8 0.86 +0.44 0.8 0.86 +0.46 0.8 0.86 +0.48 0.8 0.86 +0.5 0.8 0.86 +0.52 0.8 0.86 +0.54 0.8 0.86 +0.56 0.8 0.86 +0.58 0.8 0.86 +0.6 0.8 0.86 +0.62 0.8 0.86 +0.64 0.8 0.86 +0.66 0.8 0.86 +0.38 0.82 0.86 +0.4 0.82 0.86 +0.42 0.82 0.86 +0.44 0.82 0.86 +0.46 0.82 0.86 +0.48 0.82 0.86 +0.5 0.82 0.86 +0.52 0.82 0.86 +0.54 0.82 0.86 +0.56 0.82 0.86 +0.58 0.82 0.86 +0.6 0.82 0.86 +0.62 0.82 0.86 +0.44 0.84 0.86 +0.46 0.84 0.86 +0.48 0.84 0.86 +0.5 0.84 0.86 +0.52 0.84 0.86 +0.54 0.84 0.86 +0.56 0.84 0.86 +0.46 0.18 0.88 +0.48 0.18 0.88 +0.5 0.18 0.88 +0.52 0.18 0.88 +0.54 0.18 0.88 +0.38 0.2 0.88 +0.4 0.2 0.88 +0.42 0.2 0.88 +0.44 0.2 0.88 +0.46 0.2 0.88 +0.48 0.2 0.88 +0.5 0.2 0.88 +0.52 0.2 0.88 +0.54 0.2 0.88 +0.56 0.2 0.88 +0.58 0.2 0.88 +0.6 0.2 0.88 +0.62 0.2 0.88 +0.34 0.22 0.88 +0.36 0.22 0.88 +0.38 0.22 0.88 +0.4 0.22 0.88 +0.42 0.22 0.88 +0.44 0.22 0.88 +0.46 0.22 0.88 +0.48 0.22 0.88 +0.5 0.22 0.88 +0.52 0.22 0.88 +0.54 0.22 0.88 +0.56 0.22 0.88 +0.58 0.22 0.88 +0.6 0.22 0.88 +0.62 0.22 0.88 +0.64 0.22 0.88 +0.66 0.22 0.88 +0.32 0.24 0.88 +0.34 0.24 0.88 +0.36 0.24 0.88 +0.38 0.24 0.88 +0.4 0.24 0.88 +0.42 0.24 0.88 +0.44 0.24 0.88 +0.46 0.24 0.88 +0.48 0.24 0.88 +0.5 0.24 0.88 +0.52 0.24 0.88 +0.54 0.24 0.88 +0.56 0.24 0.88 +0.58 0.24 0.88 +0.6 0.24 0.88 +0.62 0.24 0.88 +0.64 0.24 0.88 +0.66 0.24 0.88 +0.68 0.24 0.88 +0.3 0.26 0.88 +0.32 0.26 0.88 +0.34 0.26 0.88 +0.36 0.26 0.88 +0.38 0.26 0.88 +0.4 0.26 0.88 +0.42 0.26 0.88 +0.44 0.26 0.88 +0.46 0.26 0.88 +0.54 0.26 0.88 +0.56 0.26 0.88 +0.58 0.26 0.88 +0.6 0.26 0.88 +0.62 0.26 0.88 +0.64 0.26 0.88 +0.66 0.26 0.88 +0.68 0.26 0.88 +0.7 0.26 0.88 +0.28 0.28 0.88 +0.3 0.28 0.88 +0.32 0.28 0.88 +0.34 0.28 0.88 +0.36 0.28 0.88 +0.38 0.28 0.88 +0.4 0.28 0.88 +0.6 0.28 0.88 +0.62 0.28 0.88 +0.64 0.28 0.88 +0.66 0.28 0.88 +0.68 0.28 0.88 +0.7 0.28 0.88 +0.72 0.28 0.88 +0.26 0.3 0.88 +0.28 0.3 0.88 +0.3 0.3 0.88 +0.32 0.3 0.88 +0.34 0.3 0.88 +0.36 0.3 0.88 +0.64 0.3 0.88 +0.66 0.3 0.88 +0.68 0.3 0.88 +0.7 0.3 0.88 +0.72 0.3 0.88 +0.74 0.3 0.88 +0.24 0.32 0.88 +0.26 0.32 0.88 +0.28 0.32 0.88 +0.3 0.32 0.88 +0.32 0.32 0.88 +0.68 0.32 0.88 +0.7 0.32 0.88 +0.72 0.32 0.88 +0.74 0.32 0.88 +0.76 0.32 0.88 +0.22 0.34 0.88 +0.24 0.34 0.88 +0.26 0.34 0.88 +0.28 0.34 0.88 +0.3 0.34 0.88 +0.7 0.34 0.88 +0.72 0.34 0.88 +0.74 0.34 0.88 +0.76 0.34 0.88 +0.78 0.34 0.88 +0.22 0.36 0.88 +0.24 0.36 0.88 +0.26 0.36 0.88 +0.28 0.36 0.88 +0.3 0.36 0.88 +0.7 0.36 0.88 +0.72 0.36 0.88 +0.74 0.36 0.88 +0.76 0.36 0.88 +0.78 0.36 0.88 +0.2 0.38 0.88 +0.22 0.38 0.88 +0.24 0.38 0.88 +0.26 0.38 0.88 +0.28 0.38 0.88 +0.72 0.38 0.88 +0.74 0.38 0.88 +0.76 0.38 0.88 +0.78 0.38 0.88 +0.8 0.38 0.88 +0.2 0.4 0.88 +0.22 0.4 0.88 +0.24 0.4 0.88 +0.26 0.4 0.88 +0.28 0.4 0.88 +0.72 0.4 0.88 +0.74 0.4 0.88 +0.76 0.4 0.88 +0.78 0.4 0.88 +0.8 0.4 0.88 +0.2 0.42 0.88 +0.22 0.42 0.88 +0.24 0.42 0.88 +0.26 0.42 0.88 +0.74 0.42 0.88 +0.76 0.42 0.88 +0.78 0.42 0.88 +0.8 0.42 0.88 +0.2 0.44 0.88 +0.22 0.44 0.88 +0.24 0.44 0.88 +0.26 0.44 0.88 +0.74 0.44 0.88 +0.76 0.44 0.88 +0.78 0.44 0.88 +0.8 0.44 0.88 +0.18 0.46 0.88 +0.2 0.46 0.88 +0.22 0.46 0.88 +0.24 0.46 0.88 +0.26 0.46 0.88 +0.74 0.46 0.88 +0.76 0.46 0.88 +0.78 0.46 0.88 +0.8 0.46 0.88 +0.82 0.46 0.88 +0.18 0.48 0.88 +0.2 0.48 0.88 +0.22 0.48 0.88 +0.24 0.48 0.88 +0.76 0.48 0.88 +0.78 0.48 0.88 +0.8 0.48 0.88 +0.82 0.48 0.88 +0.18 0.5 0.88 +0.2 0.5 0.88 +0.22 0.5 0.88 +0.24 0.5 0.88 +0.76 0.5 0.88 +0.78 0.5 0.88 +0.8 0.5 0.88 +0.82 0.5 0.88 +0.18 0.52 0.88 +0.2 0.52 0.88 +0.22 0.52 0.88 +0.24 0.52 0.88 +0.76 0.52 0.88 +0.78 0.52 0.88 +0.8 0.52 0.88 +0.82 0.52 0.88 +0.18 0.54 0.88 +0.2 0.54 0.88 +0.22 0.54 0.88 +0.24 0.54 0.88 +0.26 0.54 0.88 +0.74 0.54 0.88 +0.76 0.54 0.88 +0.78 0.54 0.88 +0.8 0.54 0.88 +0.82 0.54 0.88 +0.2 0.56 0.88 +0.22 0.56 0.88 +0.24 0.56 0.88 +0.26 0.56 0.88 +0.74 0.56 0.88 +0.76 0.56 0.88 +0.78 0.56 0.88 +0.8 0.56 0.88 +0.2 0.58 0.88 +0.22 0.58 0.88 +0.24 0.58 0.88 +0.26 0.58 0.88 +0.74 0.58 0.88 +0.76 0.58 0.88 +0.78 0.58 0.88 +0.8 0.58 0.88 +0.2 0.6 0.88 +0.22 0.6 0.88 +0.24 0.6 0.88 +0.26 0.6 0.88 +0.28 0.6 0.88 +0.72 0.6 0.88 +0.74 0.6 0.88 +0.76 0.6 0.88 +0.78 0.6 0.88 +0.8 0.6 0.88 +0.2 0.62 0.88 +0.22 0.62 0.88 +0.24 0.62 0.88 +0.26 0.62 0.88 +0.28 0.62 0.88 +0.72 0.62 0.88 +0.74 0.62 0.88 +0.76 0.62 0.88 +0.78 0.62 0.88 +0.8 0.62 0.88 +0.22 0.64 0.88 +0.24 0.64 0.88 +0.26 0.64 0.88 +0.28 0.64 0.88 +0.3 0.64 0.88 +0.7 0.64 0.88 +0.72 0.64 0.88 +0.74 0.64 0.88 +0.76 0.64 0.88 +0.78 0.64 0.88 +0.22 0.66 0.88 +0.24 0.66 0.88 +0.26 0.66 0.88 +0.28 0.66 0.88 +0.3 0.66 0.88 +0.7 0.66 0.88 +0.72 0.66 0.88 +0.74 0.66 0.88 +0.76 0.66 0.88 +0.78 0.66 0.88 +0.24 0.68 0.88 +0.26 0.68 0.88 +0.28 0.68 0.88 +0.3 0.68 0.88 +0.32 0.68 0.88 +0.68 0.68 0.88 +0.7 0.68 0.88 +0.72 0.68 0.88 +0.74 0.68 0.88 +0.76 0.68 0.88 +0.26 0.7 0.88 +0.28 0.7 0.88 +0.3 0.7 0.88 +0.32 0.7 0.88 +0.34 0.7 0.88 +0.36 0.7 0.88 +0.64 0.7 0.88 +0.66 0.7 0.88 +0.68 0.7 0.88 +0.7 0.7 0.88 +0.72 0.7 0.88 +0.74 0.7 0.88 +0.28 0.72 0.88 +0.3 0.72 0.88 +0.32 0.72 0.88 +0.34 0.72 0.88 +0.36 0.72 0.88 +0.38 0.72 0.88 +0.4 0.72 0.88 +0.6 0.72 0.88 +0.62 0.72 0.88 +0.64 0.72 0.88 +0.66 0.72 0.88 +0.68 0.72 0.88 +0.7 0.72 0.88 +0.72 0.72 0.88 +0.3 0.74 0.88 +0.32 0.74 0.88 +0.34 0.74 0.88 +0.36 0.74 0.88 +0.38 0.74 0.88 +0.4 0.74 0.88 +0.42 0.74 0.88 +0.44 0.74 0.88 +0.46 0.74 0.88 +0.54 0.74 0.88 +0.56 0.74 0.88 +0.58 0.74 0.88 +0.6 0.74 0.88 +0.62 0.74 0.88 +0.64 0.74 0.88 +0.66 0.74 0.88 +0.68 0.74 0.88 +0.7 0.74 0.88 +0.32 0.76 0.88 +0.34 0.76 0.88 +0.36 0.76 0.88 +0.38 0.76 0.88 +0.4 0.76 0.88 +0.42 0.76 0.88 +0.44 0.76 0.88 +0.46 0.76 0.88 +0.48 0.76 0.88 +0.5 0.76 0.88 +0.52 0.76 0.88 +0.54 0.76 0.88 +0.56 0.76 0.88 +0.58 0.76 0.88 +0.6 0.76 0.88 +0.62 0.76 0.88 +0.64 0.76 0.88 +0.66 0.76 0.88 +0.68 0.76 0.88 +0.34 0.78 0.88 +0.36 0.78 0.88 +0.38 0.78 0.88 +0.4 0.78 0.88 +0.42 0.78 0.88 +0.44 0.78 0.88 +0.46 0.78 0.88 +0.48 0.78 0.88 +0.5 0.78 0.88 +0.52 0.78 0.88 +0.54 0.78 0.88 +0.56 0.78 0.88 +0.58 0.78 0.88 +0.6 0.78 0.88 +0.62 0.78 0.88 +0.64 0.78 0.88 +0.66 0.78 0.88 +0.38 0.8 0.88 +0.4 0.8 0.88 +0.42 0.8 0.88 +0.44 0.8 0.88 +0.46 0.8 0.88 +0.48 0.8 0.88 +0.5 0.8 0.88 +0.52 0.8 0.88 +0.54 0.8 0.88 +0.56 0.8 0.88 +0.58 0.8 0.88 +0.6 0.8 0.88 +0.62 0.8 0.88 +0.46 0.82 0.88 +0.48 0.82 0.88 +0.5 0.82 0.88 +0.52 0.82 0.88 +0.54 0.82 0.88 +0.4 0.22 0.9 +0.42 0.22 0.9 +0.44 0.22 0.9 +0.46 0.22 0.9 +0.48 0.22 0.9 +0.5 0.22 0.9 +0.52 0.22 0.9 +0.54 0.22 0.9 +0.56 0.22 0.9 +0.58 0.22 0.9 +0.6 0.22 0.9 +0.36 0.24 0.9 +0.38 0.24 0.9 +0.4 0.24 0.9 +0.42 0.24 0.9 +0.44 0.24 0.9 +0.46 0.24 0.9 +0.48 0.24 0.9 +0.5 0.24 0.9 +0.52 0.24 0.9 +0.54 0.24 0.9 +0.56 0.24 0.9 +0.58 0.24 0.9 +0.6 0.24 0.9 +0.62 0.24 0.9 +0.64 0.24 0.9 +0.34 0.26 0.9 +0.36 0.26 0.9 +0.38 0.26 0.9 +0.4 0.26 0.9 +0.42 0.26 0.9 +0.44 0.26 0.9 +0.46 0.26 0.9 +0.48 0.26 0.9 +0.5 0.26 0.9 +0.52 0.26 0.9 +0.54 0.26 0.9 +0.56 0.26 0.9 +0.58 0.26 0.9 +0.6 0.26 0.9 +0.62 0.26 0.9 +0.64 0.26 0.9 +0.66 0.26 0.9 +0.3 0.28 0.9 +0.32 0.28 0.9 +0.34 0.28 0.9 +0.36 0.28 0.9 +0.38 0.28 0.9 +0.4 0.28 0.9 +0.42 0.28 0.9 +0.44 0.28 0.9 +0.46 0.28 0.9 +0.48 0.28 0.9 +0.5 0.28 0.9 +0.52 0.28 0.9 +0.54 0.28 0.9 +0.56 0.28 0.9 +0.58 0.28 0.9 +0.6 0.28 0.9 +0.62 0.28 0.9 +0.64 0.28 0.9 +0.66 0.28 0.9 +0.68 0.28 0.9 +0.7 0.28 0.9 +0.28 0.3 0.9 +0.3 0.3 0.9 +0.32 0.3 0.9 +0.34 0.3 0.9 +0.36 0.3 0.9 +0.38 0.3 0.9 +0.4 0.3 0.9 +0.42 0.3 0.9 +0.44 0.3 0.9 +0.56 0.3 0.9 +0.58 0.3 0.9 +0.6 0.3 0.9 +0.62 0.3 0.9 +0.64 0.3 0.9 +0.66 0.3 0.9 +0.68 0.3 0.9 +0.7 0.3 0.9 +0.72 0.3 0.9 +0.28 0.32 0.9 +0.3 0.32 0.9 +0.32 0.32 0.9 +0.34 0.32 0.9 +0.36 0.32 0.9 +0.38 0.32 0.9 +0.62 0.32 0.9 +0.64 0.32 0.9 +0.66 0.32 0.9 +0.68 0.32 0.9 +0.7 0.32 0.9 +0.72 0.32 0.9 +0.26 0.34 0.9 +0.28 0.34 0.9 +0.3 0.34 0.9 +0.32 0.34 0.9 +0.34 0.34 0.9 +0.36 0.34 0.9 +0.64 0.34 0.9 +0.66 0.34 0.9 +0.68 0.34 0.9 +0.7 0.34 0.9 +0.72 0.34 0.9 +0.74 0.34 0.9 +0.24 0.36 0.9 +0.26 0.36 0.9 +0.28 0.36 0.9 +0.3 0.36 0.9 +0.32 0.36 0.9 +0.34 0.36 0.9 +0.66 0.36 0.9 +0.68 0.36 0.9 +0.7 0.36 0.9 +0.72 0.36 0.9 +0.74 0.36 0.9 +0.76 0.36 0.9 +0.24 0.38 0.9 +0.26 0.38 0.9 +0.28 0.38 0.9 +0.3 0.38 0.9 +0.32 0.38 0.9 +0.68 0.38 0.9 +0.7 0.38 0.9 +0.72 0.38 0.9 +0.74 0.38 0.9 +0.76 0.38 0.9 +0.22 0.4 0.9 +0.24 0.4 0.9 +0.26 0.4 0.9 +0.28 0.4 0.9 +0.3 0.4 0.9 +0.7 0.4 0.9 +0.72 0.4 0.9 +0.74 0.4 0.9 +0.76 0.4 0.9 +0.78 0.4 0.9 +0.22 0.42 0.9 +0.24 0.42 0.9 +0.26 0.42 0.9 +0.28 0.42 0.9 +0.3 0.42 0.9 +0.7 0.42 0.9 +0.72 0.42 0.9 +0.74 0.42 0.9 +0.76 0.42 0.9 +0.78 0.42 0.9 +0.22 0.44 0.9 +0.24 0.44 0.9 +0.26 0.44 0.9 +0.28 0.44 0.9 +0.3 0.44 0.9 +0.7 0.44 0.9 +0.72 0.44 0.9 +0.74 0.44 0.9 +0.76 0.44 0.9 +0.78 0.44 0.9 +0.22 0.46 0.9 +0.24 0.46 0.9 +0.26 0.46 0.9 +0.28 0.46 0.9 +0.72 0.46 0.9 +0.74 0.46 0.9 +0.76 0.46 0.9 +0.78 0.46 0.9 +0.22 0.48 0.9 +0.24 0.48 0.9 +0.26 0.48 0.9 +0.28 0.48 0.9 +0.72 0.48 0.9 +0.74 0.48 0.9 +0.76 0.48 0.9 +0.78 0.48 0.9 +0.22 0.5 0.9 +0.24 0.5 0.9 +0.26 0.5 0.9 +0.28 0.5 0.9 +0.72 0.5 0.9 +0.74 0.5 0.9 +0.76 0.5 0.9 +0.78 0.5 0.9 +0.22 0.52 0.9 +0.24 0.52 0.9 +0.26 0.52 0.9 +0.28 0.52 0.9 +0.72 0.52 0.9 +0.74 0.52 0.9 +0.76 0.52 0.9 +0.78 0.52 0.9 +0.22 0.54 0.9 +0.24 0.54 0.9 +0.26 0.54 0.9 +0.28 0.54 0.9 +0.72 0.54 0.9 +0.74 0.54 0.9 +0.76 0.54 0.9 +0.78 0.54 0.9 +0.22 0.56 0.9 +0.24 0.56 0.9 +0.26 0.56 0.9 +0.28 0.56 0.9 +0.3 0.56 0.9 +0.7 0.56 0.9 +0.72 0.56 0.9 +0.74 0.56 0.9 +0.76 0.56 0.9 +0.78 0.56 0.9 +0.22 0.58 0.9 +0.24 0.58 0.9 +0.26 0.58 0.9 +0.28 0.58 0.9 +0.3 0.58 0.9 +0.7 0.58 0.9 +0.72 0.58 0.9 +0.74 0.58 0.9 +0.76 0.58 0.9 +0.78 0.58 0.9 +0.22 0.6 0.9 +0.24 0.6 0.9 +0.26 0.6 0.9 +0.28 0.6 0.9 +0.3 0.6 0.9 +0.7 0.6 0.9 +0.72 0.6 0.9 +0.74 0.6 0.9 +0.76 0.6 0.9 +0.78 0.6 0.9 +0.24 0.62 0.9 +0.26 0.62 0.9 +0.28 0.62 0.9 +0.3 0.62 0.9 +0.32 0.62 0.9 +0.68 0.62 0.9 +0.7 0.62 0.9 +0.72 0.62 0.9 +0.74 0.62 0.9 +0.76 0.62 0.9 +0.24 0.64 0.9 +0.26 0.64 0.9 +0.28 0.64 0.9 +0.3 0.64 0.9 +0.32 0.64 0.9 +0.34 0.64 0.9 +0.66 0.64 0.9 +0.68 0.64 0.9 +0.7 0.64 0.9 +0.72 0.64 0.9 +0.74 0.64 0.9 +0.76 0.64 0.9 +0.26 0.66 0.9 +0.28 0.66 0.9 +0.3 0.66 0.9 +0.32 0.66 0.9 +0.34 0.66 0.9 +0.36 0.66 0.9 +0.64 0.66 0.9 +0.66 0.66 0.9 +0.68 0.66 0.9 +0.7 0.66 0.9 +0.72 0.66 0.9 +0.74 0.66 0.9 +0.28 0.68 0.9 +0.3 0.68 0.9 +0.32 0.68 0.9 +0.34 0.68 0.9 +0.36 0.68 0.9 +0.38 0.68 0.9 +0.62 0.68 0.9 +0.64 0.68 0.9 +0.66 0.68 0.9 +0.68 0.68 0.9 +0.7 0.68 0.9 +0.72 0.68 0.9 +0.28 0.7 0.9 +0.3 0.7 0.9 +0.32 0.7 0.9 +0.34 0.7 0.9 +0.36 0.7 0.9 +0.38 0.7 0.9 +0.4 0.7 0.9 +0.42 0.7 0.9 +0.44 0.7 0.9 +0.56 0.7 0.9 +0.58 0.7 0.9 +0.6 0.7 0.9 +0.62 0.7 0.9 +0.64 0.7 0.9 +0.66 0.7 0.9 +0.68 0.7 0.9 +0.7 0.7 0.9 +0.72 0.7 0.9 +0.3 0.72 0.9 +0.32 0.72 0.9 +0.34 0.72 0.9 +0.36 0.72 0.9 +0.38 0.72 0.9 +0.4 0.72 0.9 +0.42 0.72 0.9 +0.44 0.72 0.9 +0.46 0.72 0.9 +0.48 0.72 0.9 +0.5 0.72 0.9 +0.52 0.72 0.9 +0.54 0.72 0.9 +0.56 0.72 0.9 +0.58 0.72 0.9 +0.6 0.72 0.9 +0.62 0.72 0.9 +0.64 0.72 0.9 +0.66 0.72 0.9 +0.68 0.72 0.9 +0.7 0.72 0.9 +0.34 0.74 0.9 +0.36 0.74 0.9 +0.38 0.74 0.9 +0.4 0.74 0.9 +0.42 0.74 0.9 +0.44 0.74 0.9 +0.46 0.74 0.9 +0.48 0.74 0.9 +0.5 0.74 0.9 +0.52 0.74 0.9 +0.54 0.74 0.9 +0.56 0.74 0.9 +0.58 0.74 0.9 +0.6 0.74 0.9 +0.62 0.74 0.9 +0.64 0.74 0.9 +0.66 0.74 0.9 +0.36 0.76 0.9 +0.38 0.76 0.9 +0.4 0.76 0.9 +0.42 0.76 0.9 +0.44 0.76 0.9 +0.46 0.76 0.9 +0.48 0.76 0.9 +0.5 0.76 0.9 +0.52 0.76 0.9 +0.54 0.76 0.9 +0.56 0.76 0.9 +0.58 0.76 0.9 +0.6 0.76 0.9 +0.62 0.76 0.9 +0.64 0.76 0.9 +0.4 0.78 0.9 +0.42 0.78 0.9 +0.44 0.78 0.9 +0.46 0.78 0.9 +0.48 0.78 0.9 +0.5 0.78 0.9 +0.52 0.78 0.9 +0.54 0.78 0.9 +0.56 0.78 0.9 +0.58 0.78 0.9 +0.6 0.78 0.9 +0.44 0.24 0.92 +0.46 0.24 0.92 +0.48 0.24 0.92 +0.5 0.24 0.92 +0.52 0.24 0.92 +0.54 0.24 0.92 +0.56 0.24 0.92 +0.38 0.26 0.92 +0.4 0.26 0.92 +0.42 0.26 0.92 +0.44 0.26 0.92 +0.46 0.26 0.92 +0.48 0.26 0.92 +0.5 0.26 0.92 +0.52 0.26 0.92 +0.54 0.26 0.92 +0.56 0.26 0.92 +0.58 0.26 0.92 +0.6 0.26 0.92 +0.62 0.26 0.92 +0.36 0.28 0.92 +0.38 0.28 0.92 +0.4 0.28 0.92 +0.42 0.28 0.92 +0.44 0.28 0.92 +0.46 0.28 0.92 +0.48 0.28 0.92 +0.5 0.28 0.92 +0.52 0.28 0.92 +0.54 0.28 0.92 +0.56 0.28 0.92 +0.58 0.28 0.92 +0.6 0.28 0.92 +0.62 0.28 0.92 +0.64 0.28 0.92 +0.32 0.3 0.92 +0.34 0.3 0.92 +0.36 0.3 0.92 +0.38 0.3 0.92 +0.4 0.3 0.92 +0.42 0.3 0.92 +0.44 0.3 0.92 +0.46 0.3 0.92 +0.48 0.3 0.92 +0.5 0.3 0.92 +0.52 0.3 0.92 +0.54 0.3 0.92 +0.56 0.3 0.92 +0.58 0.3 0.92 +0.6 0.3 0.92 +0.62 0.3 0.92 +0.64 0.3 0.92 +0.66 0.3 0.92 +0.68 0.3 0.92 +0.3 0.32 0.92 +0.32 0.32 0.92 +0.34 0.32 0.92 +0.36 0.32 0.92 +0.38 0.32 0.92 +0.4 0.32 0.92 +0.42 0.32 0.92 +0.44 0.32 0.92 +0.46 0.32 0.92 +0.48 0.32 0.92 +0.5 0.32 0.92 +0.52 0.32 0.92 +0.54 0.32 0.92 +0.56 0.32 0.92 +0.58 0.32 0.92 +0.6 0.32 0.92 +0.62 0.32 0.92 +0.64 0.32 0.92 +0.66 0.32 0.92 +0.68 0.32 0.92 +0.7 0.32 0.92 +0.3 0.34 0.92 +0.32 0.34 0.92 +0.34 0.34 0.92 +0.36 0.34 0.92 +0.38 0.34 0.92 +0.4 0.34 0.92 +0.42 0.34 0.92 +0.44 0.34 0.92 +0.46 0.34 0.92 +0.54 0.34 0.92 +0.56 0.34 0.92 +0.58 0.34 0.92 +0.6 0.34 0.92 +0.62 0.34 0.92 +0.64 0.34 0.92 +0.66 0.34 0.92 +0.68 0.34 0.92 +0.7 0.34 0.92 +0.28 0.36 0.92 +0.3 0.36 0.92 +0.32 0.36 0.92 +0.34 0.36 0.92 +0.36 0.36 0.92 +0.38 0.36 0.92 +0.4 0.36 0.92 +0.6 0.36 0.92 +0.62 0.36 0.92 +0.64 0.36 0.92 +0.66 0.36 0.92 +0.68 0.36 0.92 +0.7 0.36 0.92 +0.72 0.36 0.92 +0.26 0.38 0.92 +0.28 0.38 0.92 +0.3 0.38 0.92 +0.32 0.38 0.92 +0.34 0.38 0.92 +0.36 0.38 0.92 +0.38 0.38 0.92 +0.62 0.38 0.92 +0.64 0.38 0.92 +0.66 0.38 0.92 +0.68 0.38 0.92 +0.7 0.38 0.92 +0.72 0.38 0.92 +0.74 0.38 0.92 +0.26 0.4 0.92 +0.28 0.4 0.92 +0.3 0.4 0.92 +0.32 0.4 0.92 +0.34 0.4 0.92 +0.36 0.4 0.92 +0.64 0.4 0.92 +0.66 0.4 0.92 +0.68 0.4 0.92 +0.7 0.4 0.92 +0.72 0.4 0.92 +0.74 0.4 0.92 +0.26 0.42 0.92 +0.28 0.42 0.92 +0.3 0.42 0.92 +0.32 0.42 0.92 +0.34 0.42 0.92 +0.66 0.42 0.92 +0.68 0.42 0.92 +0.7 0.42 0.92 +0.72 0.42 0.92 +0.74 0.42 0.92 +0.24 0.44 0.92 +0.26 0.44 0.92 +0.28 0.44 0.92 +0.3 0.44 0.92 +0.32 0.44 0.92 +0.34 0.44 0.92 +0.66 0.44 0.92 +0.68 0.44 0.92 +0.7 0.44 0.92 +0.72 0.44 0.92 +0.74 0.44 0.92 +0.76 0.44 0.92 +0.24 0.46 0.92 +0.26 0.46 0.92 +0.28 0.46 0.92 +0.3 0.46 0.92 +0.32 0.46 0.92 +0.34 0.46 0.92 +0.66 0.46 0.92 +0.68 0.46 0.92 +0.7 0.46 0.92 +0.72 0.46 0.92 +0.74 0.46 0.92 +0.76 0.46 0.92 +0.24 0.48 0.92 +0.26 0.48 0.92 +0.28 0.48 0.92 +0.3 0.48 0.92 +0.32 0.48 0.92 +0.68 0.48 0.92 +0.7 0.48 0.92 +0.72 0.48 0.92 +0.74 0.48 0.92 +0.76 0.48 0.92 +0.24 0.5 0.92 +0.26 0.5 0.92 +0.28 0.5 0.92 +0.3 0.5 0.92 +0.32 0.5 0.92 +0.68 0.5 0.92 +0.7 0.5 0.92 +0.72 0.5 0.92 +0.74 0.5 0.92 +0.76 0.5 0.92 +0.24 0.52 0.92 +0.26 0.52 0.92 +0.28 0.52 0.92 +0.3 0.52 0.92 +0.32 0.52 0.92 +0.68 0.52 0.92 +0.7 0.52 0.92 +0.72 0.52 0.92 +0.74 0.52 0.92 +0.76 0.52 0.92 +0.24 0.54 0.92 +0.26 0.54 0.92 +0.28 0.54 0.92 +0.3 0.54 0.92 +0.32 0.54 0.92 +0.34 0.54 0.92 +0.66 0.54 0.92 +0.68 0.54 0.92 +0.7 0.54 0.92 +0.72 0.54 0.92 +0.74 0.54 0.92 +0.76 0.54 0.92 +0.24 0.56 0.92 +0.26 0.56 0.92 +0.28 0.56 0.92 +0.3 0.56 0.92 +0.32 0.56 0.92 +0.34 0.56 0.92 +0.66 0.56 0.92 +0.68 0.56 0.92 +0.7 0.56 0.92 +0.72 0.56 0.92 +0.74 0.56 0.92 +0.76 0.56 0.92 +0.26 0.58 0.92 +0.28 0.58 0.92 +0.3 0.58 0.92 +0.32 0.58 0.92 +0.34 0.58 0.92 +0.66 0.58 0.92 +0.68 0.58 0.92 +0.7 0.58 0.92 +0.72 0.58 0.92 +0.74 0.58 0.92 +0.26 0.6 0.92 +0.28 0.6 0.92 +0.3 0.6 0.92 +0.32 0.6 0.92 +0.34 0.6 0.92 +0.36 0.6 0.92 +0.64 0.6 0.92 +0.66 0.6 0.92 +0.68 0.6 0.92 +0.7 0.6 0.92 +0.72 0.6 0.92 +0.74 0.6 0.92 +0.26 0.62 0.92 +0.28 0.62 0.92 +0.3 0.62 0.92 +0.32 0.62 0.92 +0.34 0.62 0.92 +0.36 0.62 0.92 +0.38 0.62 0.92 +0.62 0.62 0.92 +0.64 0.62 0.92 +0.66 0.62 0.92 +0.68 0.62 0.92 +0.7 0.62 0.92 +0.72 0.62 0.92 +0.74 0.62 0.92 +0.28 0.64 0.92 +0.3 0.64 0.92 +0.32 0.64 0.92 +0.34 0.64 0.92 +0.36 0.64 0.92 +0.38 0.64 0.92 +0.4 0.64 0.92 +0.6 0.64 0.92 +0.62 0.64 0.92 +0.64 0.64 0.92 +0.66 0.64 0.92 +0.68 0.64 0.92 +0.7 0.64 0.92 +0.72 0.64 0.92 +0.3 0.66 0.92 +0.32 0.66 0.92 +0.34 0.66 0.92 +0.36 0.66 0.92 +0.38 0.66 0.92 +0.4 0.66 0.92 +0.42 0.66 0.92 +0.44 0.66 0.92 +0.46 0.66 0.92 +0.54 0.66 0.92 +0.56 0.66 0.92 +0.58 0.66 0.92 +0.6 0.66 0.92 +0.62 0.66 0.92 +0.64 0.66 0.92 +0.66 0.66 0.92 +0.68 0.66 0.92 +0.7 0.66 0.92 +0.3 0.68 0.92 +0.32 0.68 0.92 +0.34 0.68 0.92 +0.36 0.68 0.92 +0.38 0.68 0.92 +0.4 0.68 0.92 +0.42 0.68 0.92 +0.44 0.68 0.92 +0.46 0.68 0.92 +0.48 0.68 0.92 +0.5 0.68 0.92 +0.52 0.68 0.92 +0.54 0.68 0.92 +0.56 0.68 0.92 +0.58 0.68 0.92 +0.6 0.68 0.92 +0.62 0.68 0.92 +0.64 0.68 0.92 +0.66 0.68 0.92 +0.68 0.68 0.92 +0.7 0.68 0.92 +0.32 0.7 0.92 +0.34 0.7 0.92 +0.36 0.7 0.92 +0.38 0.7 0.92 +0.4 0.7 0.92 +0.42 0.7 0.92 +0.44 0.7 0.92 +0.46 0.7 0.92 +0.48 0.7 0.92 +0.5 0.7 0.92 +0.52 0.7 0.92 +0.54 0.7 0.92 +0.56 0.7 0.92 +0.58 0.7 0.92 +0.6 0.7 0.92 +0.62 0.7 0.92 +0.64 0.7 0.92 +0.66 0.7 0.92 +0.68 0.7 0.92 +0.36 0.72 0.92 +0.38 0.72 0.92 +0.4 0.72 0.92 +0.42 0.72 0.92 +0.44 0.72 0.92 +0.46 0.72 0.92 +0.48 0.72 0.92 +0.5 0.72 0.92 +0.52 0.72 0.92 +0.54 0.72 0.92 +0.56 0.72 0.92 +0.58 0.72 0.92 +0.6 0.72 0.92 +0.62 0.72 0.92 +0.64 0.72 0.92 +0.38 0.74 0.92 +0.4 0.74 0.92 +0.42 0.74 0.92 +0.44 0.74 0.92 +0.46 0.74 0.92 +0.48 0.74 0.92 +0.5 0.74 0.92 +0.52 0.74 0.92 +0.54 0.74 0.92 +0.56 0.74 0.92 +0.58 0.74 0.92 +0.6 0.74 0.92 +0.62 0.74 0.92 +0.44 0.76 0.92 +0.46 0.76 0.92 +0.48 0.76 0.92 +0.5 0.76 0.92 +0.52 0.76 0.92 +0.54 0.76 0.92 +0.56 0.76 0.92 +0.42 0.28 0.94 +0.44 0.28 0.94 +0.46 0.28 0.94 +0.48 0.28 0.94 +0.5 0.28 0.94 +0.52 0.28 0.94 +0.54 0.28 0.94 +0.56 0.28 0.94 +0.58 0.28 0.94 +0.38 0.3 0.94 +0.4 0.3 0.94 +0.42 0.3 0.94 +0.44 0.3 0.94 +0.46 0.3 0.94 +0.48 0.3 0.94 +0.5 0.3 0.94 +0.52 0.3 0.94 +0.54 0.3 0.94 +0.56 0.3 0.94 +0.58 0.3 0.94 +0.6 0.3 0.94 +0.62 0.3 0.94 +0.36 0.32 0.94 +0.38 0.32 0.94 +0.4 0.32 0.94 +0.42 0.32 0.94 +0.44 0.32 0.94 +0.46 0.32 0.94 +0.48 0.32 0.94 +0.5 0.32 0.94 +0.52 0.32 0.94 +0.54 0.32 0.94 +0.56 0.32 0.94 +0.58 0.32 0.94 +0.6 0.32 0.94 +0.62 0.32 0.94 +0.64 0.32 0.94 +0.34 0.34 0.94 +0.36 0.34 0.94 +0.38 0.34 0.94 +0.4 0.34 0.94 +0.42 0.34 0.94 +0.44 0.34 0.94 +0.46 0.34 0.94 +0.48 0.34 0.94 +0.5 0.34 0.94 +0.52 0.34 0.94 +0.54 0.34 0.94 +0.56 0.34 0.94 +0.58 0.34 0.94 +0.6 0.34 0.94 +0.62 0.34 0.94 +0.64 0.34 0.94 +0.66 0.34 0.94 +0.32 0.36 0.94 +0.34 0.36 0.94 +0.36 0.36 0.94 +0.38 0.36 0.94 +0.4 0.36 0.94 +0.42 0.36 0.94 +0.44 0.36 0.94 +0.46 0.36 0.94 +0.48 0.36 0.94 +0.5 0.36 0.94 +0.52 0.36 0.94 +0.54 0.36 0.94 +0.56 0.36 0.94 +0.58 0.36 0.94 +0.6 0.36 0.94 +0.62 0.36 0.94 +0.64 0.36 0.94 +0.66 0.36 0.94 +0.68 0.36 0.94 +0.3 0.38 0.94 +0.32 0.38 0.94 +0.34 0.38 0.94 +0.36 0.38 0.94 +0.38 0.38 0.94 +0.4 0.38 0.94 +0.42 0.38 0.94 +0.44 0.38 0.94 +0.46 0.38 0.94 +0.48 0.38 0.94 +0.5 0.38 0.94 +0.52 0.38 0.94 +0.54 0.38 0.94 +0.56 0.38 0.94 +0.58 0.38 0.94 +0.6 0.38 0.94 +0.62 0.38 0.94 +0.64 0.38 0.94 +0.66 0.38 0.94 +0.68 0.38 0.94 +0.7 0.38 0.94 +0.3 0.4 0.94 +0.32 0.4 0.94 +0.34 0.4 0.94 +0.36 0.4 0.94 +0.38 0.4 0.94 +0.4 0.4 0.94 +0.42 0.4 0.94 +0.44 0.4 0.94 +0.46 0.4 0.94 +0.48 0.4 0.94 +0.5 0.4 0.94 +0.52 0.4 0.94 +0.54 0.4 0.94 +0.56 0.4 0.94 +0.58 0.4 0.94 +0.6 0.4 0.94 +0.62 0.4 0.94 +0.64 0.4 0.94 +0.66 0.4 0.94 +0.68 0.4 0.94 +0.7 0.4 0.94 +0.28 0.42 0.94 +0.3 0.42 0.94 +0.32 0.42 0.94 +0.34 0.42 0.94 +0.36 0.42 0.94 +0.38 0.42 0.94 +0.4 0.42 0.94 +0.42 0.42 0.94 +0.44 0.42 0.94 +0.56 0.42 0.94 +0.58 0.42 0.94 +0.6 0.42 0.94 +0.62 0.42 0.94 +0.64 0.42 0.94 +0.66 0.42 0.94 +0.68 0.42 0.94 +0.7 0.42 0.94 +0.72 0.42 0.94 +0.28 0.44 0.94 +0.3 0.44 0.94 +0.32 0.44 0.94 +0.34 0.44 0.94 +0.36 0.44 0.94 +0.38 0.44 0.94 +0.4 0.44 0.94 +0.42 0.44 0.94 +0.58 0.44 0.94 +0.6 0.44 0.94 +0.62 0.44 0.94 +0.64 0.44 0.94 +0.66 0.44 0.94 +0.68 0.44 0.94 +0.7 0.44 0.94 +0.72 0.44 0.94 +0.28 0.46 0.94 +0.3 0.46 0.94 +0.32 0.46 0.94 +0.34 0.46 0.94 +0.36 0.46 0.94 +0.38 0.46 0.94 +0.4 0.46 0.94 +0.6 0.46 0.94 +0.62 0.46 0.94 +0.64 0.46 0.94 +0.66 0.46 0.94 +0.68 0.46 0.94 +0.7 0.46 0.94 +0.72 0.46 0.94 +0.28 0.48 0.94 +0.3 0.48 0.94 +0.32 0.48 0.94 +0.34 0.48 0.94 +0.36 0.48 0.94 +0.38 0.48 0.94 +0.4 0.48 0.94 +0.6 0.48 0.94 +0.62 0.48 0.94 +0.64 0.48 0.94 +0.66 0.48 0.94 +0.68 0.48 0.94 +0.7 0.48 0.94 +0.72 0.48 0.94 +0.28 0.5 0.94 +0.3 0.5 0.94 +0.32 0.5 0.94 +0.34 0.5 0.94 +0.36 0.5 0.94 +0.38 0.5 0.94 +0.4 0.5 0.94 +0.6 0.5 0.94 +0.62 0.5 0.94 +0.64 0.5 0.94 +0.66 0.5 0.94 +0.68 0.5 0.94 +0.7 0.5 0.94 +0.72 0.5 0.94 +0.28 0.52 0.94 +0.3 0.52 0.94 +0.32 0.52 0.94 +0.34 0.52 0.94 +0.36 0.52 0.94 +0.38 0.52 0.94 +0.4 0.52 0.94 +0.6 0.52 0.94 +0.62 0.52 0.94 +0.64 0.52 0.94 +0.66 0.52 0.94 +0.68 0.52 0.94 +0.7 0.52 0.94 +0.72 0.52 0.94 +0.28 0.54 0.94 +0.3 0.54 0.94 +0.32 0.54 0.94 +0.34 0.54 0.94 +0.36 0.54 0.94 +0.38 0.54 0.94 +0.4 0.54 0.94 +0.6 0.54 0.94 +0.62 0.54 0.94 +0.64 0.54 0.94 +0.66 0.54 0.94 +0.68 0.54 0.94 +0.7 0.54 0.94 +0.72 0.54 0.94 +0.28 0.56 0.94 +0.3 0.56 0.94 +0.32 0.56 0.94 +0.34 0.56 0.94 +0.36 0.56 0.94 +0.38 0.56 0.94 +0.4 0.56 0.94 +0.42 0.56 0.94 +0.58 0.56 0.94 +0.6 0.56 0.94 +0.62 0.56 0.94 +0.64 0.56 0.94 +0.66 0.56 0.94 +0.68 0.56 0.94 +0.7 0.56 0.94 +0.72 0.56 0.94 +0.28 0.58 0.94 +0.3 0.58 0.94 +0.32 0.58 0.94 +0.34 0.58 0.94 +0.36 0.58 0.94 +0.38 0.58 0.94 +0.4 0.58 0.94 +0.42 0.58 0.94 +0.44 0.58 0.94 +0.56 0.58 0.94 +0.58 0.58 0.94 +0.6 0.58 0.94 +0.62 0.58 0.94 +0.64 0.58 0.94 +0.66 0.58 0.94 +0.68 0.58 0.94 +0.7 0.58 0.94 +0.72 0.58 0.94 +0.3 0.6 0.94 +0.32 0.6 0.94 +0.34 0.6 0.94 +0.36 0.6 0.94 +0.38 0.6 0.94 +0.4 0.6 0.94 +0.42 0.6 0.94 +0.44 0.6 0.94 +0.46 0.6 0.94 +0.48 0.6 0.94 +0.5 0.6 0.94 +0.52 0.6 0.94 +0.54 0.6 0.94 +0.56 0.6 0.94 +0.58 0.6 0.94 +0.6 0.6 0.94 +0.62 0.6 0.94 +0.64 0.6 0.94 +0.66 0.6 0.94 +0.68 0.6 0.94 +0.7 0.6 0.94 +0.3 0.62 0.94 +0.32 0.62 0.94 +0.34 0.62 0.94 +0.36 0.62 0.94 +0.38 0.62 0.94 +0.4 0.62 0.94 +0.42 0.62 0.94 +0.44 0.62 0.94 +0.46 0.62 0.94 +0.48 0.62 0.94 +0.5 0.62 0.94 +0.52 0.62 0.94 +0.54 0.62 0.94 +0.56 0.62 0.94 +0.58 0.62 0.94 +0.6 0.62 0.94 +0.62 0.62 0.94 +0.64 0.62 0.94 +0.66 0.62 0.94 +0.68 0.62 0.94 +0.7 0.62 0.94 +0.32 0.64 0.94 +0.34 0.64 0.94 +0.36 0.64 0.94 +0.38 0.64 0.94 +0.4 0.64 0.94 +0.42 0.64 0.94 +0.44 0.64 0.94 +0.46 0.64 0.94 +0.48 0.64 0.94 +0.5 0.64 0.94 +0.52 0.64 0.94 +0.54 0.64 0.94 +0.56 0.64 0.94 +0.58 0.64 0.94 +0.6 0.64 0.94 +0.62 0.64 0.94 +0.64 0.64 0.94 +0.66 0.64 0.94 +0.68 0.64 0.94 +0.34 0.66 0.94 +0.36 0.66 0.94 +0.38 0.66 0.94 +0.4 0.66 0.94 +0.42 0.66 0.94 +0.44 0.66 0.94 +0.46 0.66 0.94 +0.48 0.66 0.94 +0.5 0.66 0.94 +0.52 0.66 0.94 +0.54 0.66 0.94 +0.56 0.66 0.94 +0.58 0.66 0.94 +0.6 0.66 0.94 +0.62 0.66 0.94 +0.64 0.66 0.94 +0.66 0.66 0.94 +0.36 0.68 0.94 +0.38 0.68 0.94 +0.4 0.68 0.94 +0.42 0.68 0.94 +0.44 0.68 0.94 +0.46 0.68 0.94 +0.48 0.68 0.94 +0.5 0.68 0.94 +0.52 0.68 0.94 +0.54 0.68 0.94 +0.56 0.68 0.94 +0.58 0.68 0.94 +0.6 0.68 0.94 +0.62 0.68 0.94 +0.64 0.68 0.94 +0.38 0.7 0.94 +0.4 0.7 0.94 +0.42 0.7 0.94 +0.44 0.7 0.94 +0.46 0.7 0.94 +0.48 0.7 0.94 +0.5 0.7 0.94 +0.52 0.7 0.94 +0.54 0.7 0.94 +0.56 0.7 0.94 +0.58 0.7 0.94 +0.6 0.7 0.94 +0.62 0.7 0.94 +0.42 0.72 0.94 +0.44 0.72 0.94 +0.46 0.72 0.94 +0.48 0.72 0.94 +0.5 0.72 0.94 +0.52 0.72 0.94 +0.54 0.72 0.94 +0.56 0.72 0.94 +0.58 0.72 0.94 +0.44 0.32 0.96 +0.46 0.32 0.96 +0.48 0.32 0.96 +0.5 0.32 0.96 +0.52 0.32 0.96 +0.54 0.32 0.96 +0.56 0.32 0.96 +0.4 0.34 0.96 +0.42 0.34 0.96 +0.44 0.34 0.96 +0.46 0.34 0.96 +0.48 0.34 0.96 +0.5 0.34 0.96 +0.52 0.34 0.96 +0.54 0.34 0.96 +0.56 0.34 0.96 +0.58 0.34 0.96 +0.6 0.34 0.96 +0.38 0.36 0.96 +0.4 0.36 0.96 +0.42 0.36 0.96 +0.44 0.36 0.96 +0.46 0.36 0.96 +0.48 0.36 0.96 +0.5 0.36 0.96 +0.52 0.36 0.96 +0.54 0.36 0.96 +0.56 0.36 0.96 +0.58 0.36 0.96 +0.6 0.36 0.96 +0.62 0.36 0.96 +0.36 0.38 0.96 +0.38 0.38 0.96 +0.4 0.38 0.96 +0.42 0.38 0.96 +0.44 0.38 0.96 +0.46 0.38 0.96 +0.48 0.38 0.96 +0.5 0.38 0.96 +0.52 0.38 0.96 +0.54 0.38 0.96 +0.56 0.38 0.96 +0.58 0.38 0.96 +0.6 0.38 0.96 +0.62 0.38 0.96 +0.64 0.38 0.96 +0.34 0.4 0.96 +0.36 0.4 0.96 +0.38 0.4 0.96 +0.4 0.4 0.96 +0.42 0.4 0.96 +0.44 0.4 0.96 +0.46 0.4 0.96 +0.48 0.4 0.96 +0.5 0.4 0.96 +0.52 0.4 0.96 +0.54 0.4 0.96 +0.56 0.4 0.96 +0.58 0.4 0.96 +0.6 0.4 0.96 +0.62 0.4 0.96 +0.64 0.4 0.96 +0.66 0.4 0.96 +0.34 0.42 0.96 +0.36 0.42 0.96 +0.38 0.42 0.96 +0.4 0.42 0.96 +0.42 0.42 0.96 +0.44 0.42 0.96 +0.46 0.42 0.96 +0.48 0.42 0.96 +0.5 0.42 0.96 +0.52 0.42 0.96 +0.54 0.42 0.96 +0.56 0.42 0.96 +0.58 0.42 0.96 +0.6 0.42 0.96 +0.62 0.42 0.96 +0.64 0.42 0.96 +0.66 0.42 0.96 +0.32 0.44 0.96 +0.34 0.44 0.96 +0.36 0.44 0.96 +0.38 0.44 0.96 +0.4 0.44 0.96 +0.42 0.44 0.96 +0.44 0.44 0.96 +0.46 0.44 0.96 +0.48 0.44 0.96 +0.5 0.44 0.96 +0.52 0.44 0.96 +0.54 0.44 0.96 +0.56 0.44 0.96 +0.58 0.44 0.96 +0.6 0.44 0.96 +0.62 0.44 0.96 +0.64 0.44 0.96 +0.66 0.44 0.96 +0.68 0.44 0.96 +0.32 0.46 0.96 +0.34 0.46 0.96 +0.36 0.46 0.96 +0.38 0.46 0.96 +0.4 0.46 0.96 +0.42 0.46 0.96 +0.44 0.46 0.96 +0.46 0.46 0.96 +0.48 0.46 0.96 +0.5 0.46 0.96 +0.52 0.46 0.96 +0.54 0.46 0.96 +0.56 0.46 0.96 +0.58 0.46 0.96 +0.6 0.46 0.96 +0.62 0.46 0.96 +0.64 0.46 0.96 +0.66 0.46 0.96 +0.68 0.46 0.96 +0.32 0.48 0.96 +0.34 0.48 0.96 +0.36 0.48 0.96 +0.38 0.48 0.96 +0.4 0.48 0.96 +0.42 0.48 0.96 +0.44 0.48 0.96 +0.46 0.48 0.96 +0.48 0.48 0.96 +0.5 0.48 0.96 +0.52 0.48 0.96 +0.54 0.48 0.96 +0.56 0.48 0.96 +0.58 0.48 0.96 +0.6 0.48 0.96 +0.62 0.48 0.96 +0.64 0.48 0.96 +0.66 0.48 0.96 +0.68 0.48 0.96 +0.32 0.5 0.96 +0.34 0.5 0.96 +0.36 0.5 0.96 +0.38 0.5 0.96 +0.4 0.5 0.96 +0.42 0.5 0.96 +0.44 0.5 0.96 +0.46 0.5 0.96 +0.48 0.5 0.96 +0.5 0.5 0.96 +0.52 0.5 0.96 +0.54 0.5 0.96 +0.56 0.5 0.96 +0.58 0.5 0.96 +0.6 0.5 0.96 +0.62 0.5 0.96 +0.64 0.5 0.96 +0.66 0.5 0.96 +0.68 0.5 0.96 +0.32 0.52 0.96 +0.34 0.52 0.96 +0.36 0.52 0.96 +0.38 0.52 0.96 +0.4 0.52 0.96 +0.42 0.52 0.96 +0.44 0.52 0.96 +0.46 0.52 0.96 +0.48 0.52 0.96 +0.5 0.52 0.96 +0.52 0.52 0.96 +0.54 0.52 0.96 +0.56 0.52 0.96 +0.58 0.52 0.96 +0.6 0.52 0.96 +0.62 0.52 0.96 +0.64 0.52 0.96 +0.66 0.52 0.96 +0.68 0.52 0.96 +0.32 0.54 0.96 +0.34 0.54 0.96 +0.36 0.54 0.96 +0.38 0.54 0.96 +0.4 0.54 0.96 +0.42 0.54 0.96 +0.44 0.54 0.96 +0.46 0.54 0.96 +0.48 0.54 0.96 +0.5 0.54 0.96 +0.52 0.54 0.96 +0.54 0.54 0.96 +0.56 0.54 0.96 +0.58 0.54 0.96 +0.6 0.54 0.96 +0.62 0.54 0.96 +0.64 0.54 0.96 +0.66 0.54 0.96 +0.68 0.54 0.96 +0.32 0.56 0.96 +0.34 0.56 0.96 +0.36 0.56 0.96 +0.38 0.56 0.96 +0.4 0.56 0.96 +0.42 0.56 0.96 +0.44 0.56 0.96 +0.46 0.56 0.96 +0.48 0.56 0.96 +0.5 0.56 0.96 +0.52 0.56 0.96 +0.54 0.56 0.96 +0.56 0.56 0.96 +0.58 0.56 0.96 +0.6 0.56 0.96 +0.62 0.56 0.96 +0.64 0.56 0.96 +0.66 0.56 0.96 +0.68 0.56 0.96 +0.34 0.58 0.96 +0.36 0.58 0.96 +0.38 0.58 0.96 +0.4 0.58 0.96 +0.42 0.58 0.96 +0.44 0.58 0.96 +0.46 0.58 0.96 +0.48 0.58 0.96 +0.5 0.58 0.96 +0.52 0.58 0.96 +0.54 0.58 0.96 +0.56 0.58 0.96 +0.58 0.58 0.96 +0.6 0.58 0.96 +0.62 0.58 0.96 +0.64 0.58 0.96 +0.66 0.58 0.96 +0.34 0.6 0.96 +0.36 0.6 0.96 +0.38 0.6 0.96 +0.4 0.6 0.96 +0.42 0.6 0.96 +0.44 0.6 0.96 +0.46 0.6 0.96 +0.48 0.6 0.96 +0.5 0.6 0.96 +0.52 0.6 0.96 +0.54 0.6 0.96 +0.56 0.6 0.96 +0.58 0.6 0.96 +0.6 0.6 0.96 +0.62 0.6 0.96 +0.64 0.6 0.96 +0.66 0.6 0.96 +0.36 0.62 0.96 +0.38 0.62 0.96 +0.4 0.62 0.96 +0.42 0.62 0.96 +0.44 0.62 0.96 +0.46 0.62 0.96 +0.48 0.62 0.96 +0.5 0.62 0.96 +0.52 0.62 0.96 +0.54 0.62 0.96 +0.56 0.62 0.96 +0.58 0.62 0.96 +0.6 0.62 0.96 +0.62 0.62 0.96 +0.64 0.62 0.96 +0.38 0.64 0.96 +0.4 0.64 0.96 +0.42 0.64 0.96 +0.44 0.64 0.96 +0.46 0.64 0.96 +0.48 0.64 0.96 +0.5 0.64 0.96 +0.52 0.64 0.96 +0.54 0.64 0.96 +0.56 0.64 0.96 +0.58 0.64 0.96 +0.6 0.64 0.96 +0.62 0.64 0.96 +0.4 0.66 0.96 +0.42 0.66 0.96 +0.44 0.66 0.96 +0.46 0.66 0.96 +0.48 0.66 0.96 +0.5 0.66 0.96 +0.52 0.66 0.96 +0.54 0.66 0.96 +0.56 0.66 0.96 +0.58 0.66 0.96 +0.6 0.66 0.96 +0.44 0.68 0.96 +0.46 0.68 0.96 +0.48 0.68 0.96 +0.5 0.68 0.96 +0.52 0.68 0.96 +0.54 0.68 0.96 +0.56 0.68 0.96 +0.44 0.38 0.98 +0.46 0.38 0.98 +0.48 0.38 0.98 +0.5 0.38 0.98 +0.52 0.38 0.98 +0.54 0.38 0.98 +0.56 0.38 0.98 +0.42 0.4 0.98 +0.44 0.4 0.98 +0.46 0.4 0.98 +0.48 0.4 0.98 +0.5 0.4 0.98 +0.52 0.4 0.98 +0.54 0.4 0.98 +0.56 0.4 0.98 +0.58 0.4 0.98 +0.4 0.42 0.98 +0.42 0.42 0.98 +0.44 0.42 0.98 +0.46 0.42 0.98 +0.48 0.42 0.98 +0.5 0.42 0.98 +0.52 0.42 0.98 +0.54 0.42 0.98 +0.56 0.42 0.98 +0.58 0.42 0.98 +0.6 0.42 0.98 +0.38 0.44 0.98 +0.4 0.44 0.98 +0.42 0.44 0.98 +0.44 0.44 0.98 +0.46 0.44 0.98 +0.48 0.44 0.98 +0.5 0.44 0.98 +0.52 0.44 0.98 +0.54 0.44 0.98 +0.56 0.44 0.98 +0.58 0.44 0.98 +0.6 0.44 0.98 +0.62 0.44 0.98 +0.38 0.46 0.98 +0.4 0.46 0.98 +0.42 0.46 0.98 +0.44 0.46 0.98 +0.46 0.46 0.98 +0.48 0.46 0.98 +0.5 0.46 0.98 +0.52 0.46 0.98 +0.54 0.46 0.98 +0.56 0.46 0.98 +0.58 0.46 0.98 +0.6 0.46 0.98 +0.62 0.46 0.98 +0.38 0.48 0.98 +0.4 0.48 0.98 +0.42 0.48 0.98 +0.44 0.48 0.98 +0.46 0.48 0.98 +0.48 0.48 0.98 +0.5 0.48 0.98 +0.52 0.48 0.98 +0.54 0.48 0.98 +0.56 0.48 0.98 +0.58 0.48 0.98 +0.6 0.48 0.98 +0.62 0.48 0.98 +0.38 0.5 0.98 +0.4 0.5 0.98 +0.42 0.5 0.98 +0.44 0.5 0.98 +0.46 0.5 0.98 +0.48 0.5 0.98 +0.5 0.5 0.98 +0.52 0.5 0.98 +0.54 0.5 0.98 +0.56 0.5 0.98 +0.58 0.5 0.98 +0.6 0.5 0.98 +0.62 0.5 0.98 +0.38 0.52 0.98 +0.4 0.52 0.98 +0.42 0.52 0.98 +0.44 0.52 0.98 +0.46 0.52 0.98 +0.48 0.52 0.98 +0.5 0.52 0.98 +0.52 0.52 0.98 +0.54 0.52 0.98 +0.56 0.52 0.98 +0.58 0.52 0.98 +0.6 0.52 0.98 +0.62 0.52 0.98 +0.38 0.54 0.98 +0.4 0.54 0.98 +0.42 0.54 0.98 +0.44 0.54 0.98 +0.46 0.54 0.98 +0.48 0.54 0.98 +0.5 0.54 0.98 +0.52 0.54 0.98 +0.54 0.54 0.98 +0.56 0.54 0.98 +0.58 0.54 0.98 +0.6 0.54 0.98 +0.62 0.54 0.98 +0.38 0.56 0.98 +0.4 0.56 0.98 +0.42 0.56 0.98 +0.44 0.56 0.98 +0.46 0.56 0.98 +0.48 0.56 0.98 +0.5 0.56 0.98 +0.52 0.56 0.98 +0.54 0.56 0.98 +0.56 0.56 0.98 +0.58 0.56 0.98 +0.6 0.56 0.98 +0.62 0.56 0.98 +0.4 0.58 0.98 +0.42 0.58 0.98 +0.44 0.58 0.98 +0.46 0.58 0.98 +0.48 0.58 0.98 +0.5 0.58 0.98 +0.52 0.58 0.98 +0.54 0.58 0.98 +0.56 0.58 0.98 +0.58 0.58 0.98 +0.6 0.58 0.98 +0.42 0.6 0.98 +0.44 0.6 0.98 +0.46 0.6 0.98 +0.48 0.6 0.98 +0.5 0.6 0.98 +0.52 0.6 0.98 +0.54 0.6 0.98 +0.56 0.6 0.98 +0.58 0.6 0.98 +0.44 0.62 0.98 +0.46 0.62 0.98 +0.48 0.62 0.98 +0.5 0.62 0.98 +0.52 0.62 0.98 +0.54 0.62 0.98 +0.56 0.62 0.98 diff --git a/src/Persistent_cohomology/doc/Intro_persistent_cohomology.h b/src/Persistent_cohomology/doc/Intro_persistent_cohomology.h index 64360a3e..e17e5926 100644 --- a/src/Persistent_cohomology/doc/Intro_persistent_cohomology.h +++ b/src/Persistent_cohomology/doc/Intro_persistent_cohomology.h @@ -177,12 +177,10 @@ Persistent_cohomology/exact_alpha_complex_3d_persistence.cpp computes the pe \f$\mathbb{Z}/2\mathbb{Z}\f$ coefficients of the alpha complex on points sampling from an OFF file. Here, as CGAL computes the exact values, it is slower, but it is necessary when points are on a grid for instance. -\code $> ./exact_alpha_complex_3d_persistence ../../data/points/tore3D_300.off 2 0.45 \endcode +\code $> ./exact_alpha_complex_3d_persistence ../../data/points/sphere3D_pts_on_grid.off 2 0.1 \endcode \code Simplex_tree dim: 3 2 0 0 inf -2 1 0.0682162 1.0001 -2 1 0.0934117 1.00003 -2 2 0.56444 1.03938 \endcode +2 2 0.0002 0.2028 \endcode \li Persistent_cohomology/weighted_alpha_complex_3d_persistence.cpp computes the persistent homology with -- cgit v1.2.3 From 330f4e26fa5b33f25c2cb8fb6dc409d8d8ff9592 Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Wed, 15 Mar 2017 21:28:46 +0000 Subject: Header with correct _config.yml from Jekyll, no more beta web address git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/gudhi_doc_2.0.0@2187 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 2226ee8ee2020d68434027a57babc00da16141ae --- src/common/doc/header.html | 197 ++++----------------------------------------- 1 file changed, 14 insertions(+), 183 deletions(-) diff --git a/src/common/doc/header.html b/src/common/doc/header.html index 5a155e2b..94e641b2 100644 --- a/src/common/doc/header.html +++ b/src/common/doc/header.html @@ -27,219 +27,50 @@ $extrastylesheet -- cgit v1.2.3 -- cgit v1.2.3